一直在这里和其他地方查看各种教程和答案,但无法实现这一点。只是尝试如下所示显示来自短代码的简单输出,但它只是将实际的短代码标记输出到页面,而不是来自短代码的内容
Functions.php
<?php
function welcome_roundels_func(){
return "testing";
}
add_shortcode( \'welcome_roundels\', \'welcome_roundels_func\' );
?>
add_action( \'init\', \'register_shortcodes\');
Usage
[welcome_roundels]
要启用短代码,我还需要做些什么吗?或者上述操作是否应该起作用?
Edit我还使用以下代码输出内容
$welcomePage = get_post( 5 );
echo $welcomePage -> post_content;