php WordPress自定义帖子类型教程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress自定义帖子类型教程相关的知识,希望对你有一定的参考价值。
<?php
query_posts('showposts=1&post_type=feedback&paged='.$paged);
while ( have_posts() ) : the_post();
$terms = get_the_terms($post->ID, 'group');
?>
<article class="divider">
<h4><?php the_title(); ?><span class="comment-bubble"><?php comments_popup_link('0', '1', '%'); ?></span></h4>
<time class="date" datetime="<?php echo date("Y-m-d", strtotime(get_the_date())); ?>"><?php echo the_date("M d, Y"); ?></time>
<div class="entry">
<?php echo the_content(); ?>
</div>
<span class="meta">
Posted in <a href="/group/<?php foreach($terms as $term){echo strtolower($term->name);} ?>/"><?php foreach($terms as $term){echo $term->name;} ?></a>
| <a href="<?php the_permalink(); ?>">Comment</a>
</span>
</article>
<?php
endwhile; ?>
以上是关于php WordPress自定义帖子类型教程的主要内容,如果未能解决你的问题,请参考以下文章
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程
php WordPress自定义帖子类型教程