Shortcode WordPress Plugin

时间:2022-02-15 作者:Sonu

如何在shortcode中显示任何静态部分**WordPress插件中的短代码**WordPress短代码

1 个回复
SO网友:Pawan Kayat

function custom_movements_newest_list_template() {
  ob_start();
  get_template_part( \'MovementsGridNewest\' ); // template name
  return ob_get_clean();
}
add_shortcode( \'movements_grid_newest_all\', \'custom_movements_newest_list_template\' );
此处的“movements\\u grid\\u newest\\u all”是快捷码名称

相关推荐

列出短码(DO_SHORTCODE)中的分类术语段

我想在我的短代码中列出分类术语。这是我获取术语列表的方式(用逗号分隔):<?php $terms = get_the_terms( $post->ID , array( \'shoptype\' ) ); $i = 1; foreach ( $terms as $term ) { $term_link = get_term_link( $ter