如何在php中访问可视化作曲家模板变量以获取类别

时间:2017-02-09 07:33:24

标签: wordpress plugins

这是我的代码:

  add_shortcode( 'vc_post_cat', 'vc_post_cat_render' );
  function vc_post_cat_render() {
    $postId = '{{ post_data:ID }}';
   $cat = get_the_category($postId);
  }

但是postId不适用于函数。

1 个答案:

答案 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 ) . ' }}';
}