这是我的代码:
add_shortcode( 'vc_post_cat', 'vc_post_cat_render' );
function vc_post_cat_render() {
$postId = '{{ post_data:ID }}';
$cat = get_the_category($postId);
}
但是postId不适用于函数。
答案 0 :(得分:0)
我希望这会有所帮助
add_shortcode( 'vc_gitem_custom_post_excerpt', 'vc_gitem_custom_post_excerpt_render' );
function vc_gitem_custom_post_excerpt_render( $atts )
{
return '{{ excerpt_length:' . http_build_query( (array) $atts ) . ' }}';
}