在 function.php 文件中注册短代码
// 注册短代码
function puji_shortcode_handler($atts = array(), $content = null, $tag = '')
{
$content = '<h2>PUJI Design 朴及设计</h2>';
return $content;
}
function puji_shortcode_register()
{
add_shortcode('Puji', 'puji_shortcode_handler');
}
add_action('init', 'puji_shortcode_register');
短代码注册完成后,直接在文章编辑器中插入短代码即可显示短代码中注册的内容。
注:在页面中的内容调用函数需使用 <? php the_content(); ?>,此函数会进行自动解析,才可正确显示短代码中注册的内容,如使用 <? php echo get_the_content(); ?>,则只会讲编辑器里的内容直接显示。
[Puji]
如直接将短代码写入页面模板的代码中,可使用以下方式进行转换
<? php echo do_shortcode('Puji'); ?>