Call Shortcode on wp_footer

时间:2014-06-15 作者:Ari

是否可以在帖子/页面内容区域之外调用快捷码?我试图用以下代码将其添加到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"]\');

1 个回复
最合适的回答,由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"]\');
结束

相关推荐

Export Header and Footer

我想从WordPress中将页眉和页脚导出为HTML,并使用相同的设计:CSS、图像、JavaScript文件。但不是主内容页。我想这样做,因为我将来会使用相同的设计。有人能对我的要求提出意见吗?