我正在尝试创建我的第一个包含简码的 Wordpress 插件,但我似乎无法让它工作。当我输入我的简码 [first] 时,它只会显示“[first]”,即使它是在帖子/页面中用 HTML 编写的。我错过了什么?
<?php
/*
* Plugin Name: WordPress ShortCode
* Description: Create your WordPress shortcode.
* Version:
* Author:
* Author URI:
*/
function wp_first_shortcode(){
echo "Hello World";
}
add_shortcode(‘first’, ‘wp_first_shortcode’);
?>
没有错误,只是短代码没有正确显示。