Wordpress:修改内容函数

时间:2015-06-28 14:50:37

标签: php css wordpress custom-taxonomy

有没有办法修改the_content()函数?我想在显示自定义分类法的负面和正面分类法时添加一个css类。

示例:

<p class="positive">this is a content for the positive taxonomy</p>
<p class="positive">this is a content for the positive taxonomy</p>
<p class="negative">this is a content for the negative taxonomy</p>

我想将其应用于 author.php 代码:

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                  <?php the_content(); ?>
                <?php endwhile; else: ?>
                <p><?php _e('No posts by this author.'); ?></p>
              <?php endif; ?> 

使用 function.php

add_action( 'pre_get_posts', function ( $q ) {

    if( !is_admin() && $q->is_main_query() && $q->is_author() ) {

        $q->set( 'posts_per_page', 100 );
        $q->set( 'post_type', 'custom_feedback' );

    }

});

PS:我在这里使用的自定义帖子类型包含两个类别正面和负面的自定义分类。

1 个答案:

答案 0 :(得分:1)

您可以使用has_term()来测试帖子是否有特定字词。或者,您可以使用get_the_terms获取附加到帖子的术语,并将术语slug用作css类中的值。如果帖子附加了多个术语,这有点不可靠

解决方案1 ​​

<?php
    $class = '';
    if ( has_term( 'positive', 'custom_taxonomy' ) ) {
        $class = 'positive';
    } elseif ( has_term( 'negative', 'custom_taxonomy' ) ) {
        $class = 'negative';
    } 
?>

<div class="entry-content ><?php echo $class ?>">
    <?php the_content(); ?>
</div>

解决方案2

<?php
$terms = get_the_terms( $post->ID, 'custom_taxonomy' );
$class = $terms ? $terms[0]->slug : 'normal';
?>

<div class="entry-content ><?php echo $class ?>">
    <?php the_content(); ?>
</div>

USAGE

您现在可以使用CSS选择器定位您的内容

.entry-content positive {}
.entry-content negative {}