我试图在WpBakerys网格构建器中显示Post的全部内容
我只能添加后摘录,但我想添加完整的内容,而不是摘要,我看到我可以添加自定义字段,但不知道字段键名称的文章内容。
总之,我怎么才能显示完整的帖子内容而不是摘录呢?
发布于 2018-12-07 07:18:22
可以向“网格生成器”中添加自定义短代码:
add_filter( 'vc_grid_item_shortcodes', 'my_module_add_grid_shortcodes' );
function my_module_add_grid_shortcodes( $shortcodes ) {
$shortcodes['vc_post_content'] = array(
'name' => __( 'Post Content', 'my-text-domain' ),
'base' => 'vc_post_content',
'category' => __( 'Content', 'my-text-domain' ),
'description' => __( 'Show current post content', 'my-text-domain' ),
'post_type' => Vc_Grid_Item_Editor::postType(),
);
return $shortcodes;
}
// output function
add_shortcode( 'vc_post_content', 'vc_post_content_render' );
function vc_post_content_render() {
return '<p>{{ post_data:post_content }}</p>'; // usage of template variable post_data with argument "post_content"
}https://stackoverflow.com/questions/51135530
复制相似问题