是否可以在帖子/页面内容区域之外调用快捷码?我试图用以下代码将其添加到wp\\U页脚,但它返回字符串:
add_shortcode(\'eps_pop\', \'init\');
function indtable_display_front_end($atts ) {
global $post;
extract( shortcode_atts( array(
\'id\' => \'\'
), $atts ) );
echo get_post_meta($id, \'_my_meta_value_key\', true);
}
echo do_shortcode(\'[eps_pop id="234"]\');
最合适的回答,由SO网友:Nilambar Sharma 整理而成
Try this:
add_shortcode(\'eps_pop\', \'indtable_display_front_end\');
function indtable_display_front_end($atts ) {
global $post;
extract( shortcode_atts( array(
\'id\' => \'\'
), $atts ) );
echo get_post_meta($id, \'_my_meta_value_key\', true);
}
echo do_shortcode(\'[eps_pop id="234"]\');