我想根据它的术语显示分类。但是每个条款都在显示。我想根据条款显示帖子。这是我的代码。
<input type="text" [(ngModel)]="jobTitle" id="jobTitle" name="autocomplete" placeholder="Job Title" value="" >
<div *ngIf="jobTitle === 'bar' || jobTitle === 'Bar'">
Contain to display
</div>
答案 0 :(得分:0)
在管理员名称中创建1个页面,如此屏幕截图:http://prntscr.com/flvw4j 根据以下代码,自定义分类法post_type是&#34; event&#34; ,分类学是&#34; eventcategory&#34; ,所以在主题文件夹中创建event.php文件并在其中添加下面的代码。
$temp = $wp_query; $wp_query= null;
$Args = array(
'post_type' => 'event',
'showposts' => 6,
'tax_query' => array(
array(
'taxonomy' => 'eventcategory',
'field' => 'slug',
),
),
'paged'=>$paged,
);
$wp_query = new WP_Query();
$wp_query->query($Args);
while ($wp_query->have_posts()) : $wp_query->the_post();
get_template_part( 'content', 'event' );
endwhile;
然后在主题文件夹中创建content-event.php,在这里您可以添加以下代码(您可以根据自己的需要和字段进行修改)
<li>
<?php
if ( has_post_thumbnail() ) {
$feat_image_url = wp_get_attachment_url( get_post_thumbnail_id() );
$image_attributes = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full', false );
?>
<div class="events-img">
<?php
if($image_attributes[1] > 325){
$width = 325;
}else{
$width = $image_attributes[1];
}
if($image_attributes[2] > 240){
$height = 240;
}else{
$height = $image_attributes[2];
}
echo '<img src="'.$image_attributes[0].'" width="'.$width.'" height="'.$height.'"/>';
?>
</div>
<?php } ?>
<h3><a href="<?php the_permalink(); ?>">
<?php if (strlen($post->post_title) > 25) {
echo substr(the_title($before = '', $after = '', FALSE), 0, 25) . '...'; } else {
the_title();
} ?></a></h3>
<?php echo get_the_time('F d', $post->ID); ?>
<?php
$terms = get_the_terms( $post->ID, 'eventcategory' );
if ( $terms && ! is_wp_error( $terms ) ) :
$draught_links = array();
foreach ( $terms as $term ) {
$draught_links[] = $term->name;
}
$on_draught = join( " , ", $draught_links );
?>
<!--<?php echo ", ".$on_draught; ?>!-->
<?php endif; ?>
<p><?php echo excerpt(150); ?></p>
<?php
//the_content();
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'solid_rock' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'solid_rock' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
?>
然后在你的主题functions.php文件中添加以下函数
function excerpt($limit) {
return wp_trim_words(get_the_excerpt(), $limit);
}
function solid_trim_excerpt($text)
{
return '...';
}
add_filter('excerpt_more', 'solid_trim_excerpt');
希望它对你有所帮助。