【发布时间】:2015-09-30 08:41:20
【问题描述】:
我的代码是
$args=array(
'post_type' => "product",
'post_status' => 'publish',
'taxonomy' => 'products_category',
'order' =>'ASC',
'number' => '',
'hide_empty' => 0 );
$my_query = new WP_Query( $args );
echo '<ul class="product_category">';
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post();
echo '<li>';
echo '<a href='. the_permalink() .'>';
echo the_title();
echo '</a></li>';
endwhile;
}
echo '</ul>';wp_reset_query();
我想显示产品帖子类型的帖子。帖子正确发送,但帖子链接未包含在 href 标记内。
【问题讨论】:
标签: php wordpress custom-post-type