我创建了自定义帖子类型(portfolio), 使用自定义分类法(portfolio-category).我创建了一个模板,这个模板列出了所有“公文包”帖子。
<?php while ( have_posts() ) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php $mypost = array( \'post_type\' => \'portfolio\', );
$loop = new WP_Query( $mypost ); ?>
<div class="portfolio-arrows" id="p-arrow-left" data-scroll-by="-300"></div>
<div class="portfolio-arrows" id="p-arrow-right" data-scroll-by="300"></div>
<div class="inner">
<ul id="portfolio-container">
<?php while ( $loop->have_posts() ) : $loop->the_post();?>
<li id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="portfolio-content">
<h2 class="portfolio-title"><?php the_title(); ?></h2>
<span class="portfolio-date"><?php the_date(); ?></span>
<?php the_content(); ?>
</div>
<?php if ( has_post_thumbnail() ) { ?>
<div class="featured-p-image">
<?php the_post_thumbnail( \'portfolio-size\' ); ?>
<div class="featured-p-image-hover">
<?php
$fullimage_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "full" );
echo\'<a href="\'.$fullimage_src[0].\'" class="fancybox"></a>\';
?>
</div>
</div>
<?php } ?>
</li>
<?php endwhile; ?>
</ul>
</div>
如你所见
<?php while ( have_posts() ) : the_post(); ?>
在此页面模板中,用户可以在wp\\U查询上方添加内容。
我创建了一个文件,即分类组合类别。具有相同内容的php。有了这个,我想按术语列出帖子,但我也想在查询上方显示“用户管理”的内容(结果是:我得到了相同的页面,但不是唯一的内容(用户管理),而是按术语查看列表。)
我该怎么做?或者最好的方法是什么?