有没有人有能力创建一个短代码来列出所有产品名称?不需要图像,链接,描述,排序 - 只需要一个简单的模板。
<ul>
<li>ProductName1</li>
<li>ProductName2</li>
...
<li>ProductNameN</li>
</ul>
答案 0 :(得分:4)
尝试这个简单的短代码,输出基于WP_Query
的产品列表:
function get_custom_product_list() {
// The WP_Query
$query = new WP_Query( array(
'posts_per_page' => -1,
'post_type' => 'product',
'post_status' => 'publish',
'hide_empty' => 0,
'orderby' => 'title',
) );
$output = '<ul>';
while ( $query->have_posts() ) : $query->the_post();
$output .= '<li>' . $query->post->post_title . '</li>';
endwhile;
wp_reset_postdata();
return $output.'</ul>';
}
add_shortcode( 'product_list', 'get_custom_product_list' );
代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作。
用法: [product_list]