您不能在WordPress后端编辑器中使用PHP。也许你可以使用插件,但不是现成的。
最简单的解决方案是创建一个短代码。然后你可以使用[input type="text" name"from"]
在编辑器中。
function input_func( $atts ) {
extract( shortcode_atts( array(
\'type\' => \'text\',
\'name\' => \'\',
), $atts ) );
return \'<input name="\' . $name . \'" id="\' . $name . \'" value="\' . (isset($_GET[\'from\']) && $_GET[\'from\'] ? $_GET[\'from\'] : \'\') . \'" type="\' . $type . \'" />\';
}
add_shortcode( \'input\', \'input_func\' );
请参见
http://codex.wordpress.org/Shortcode_API