How add class the_content();?

时间:2017-08-29 作者:Sebestyén Nagy

如何添加类the_content();?

<div class="csoporszoveg">
    <h3 class="csoporcim"><?php
        if ($settings[\'enable_link\']) {
            echo \'<a href="\' . get_permalink($post) . \'">\';
        }

        the_title();

        if ($settings[\'enable_link\']) {
            echo \'</a>\';
        }
        ?>
    </h3>
    <?php } ?>  
      <?php
        if ( $content_source == \'excerpt\' ) {
            the_excerpt();
        } else {
            the_content();
        }
      ?> 
</div>

3 个回复
SO网友:Jacob Peattie

不需要。您需要在其周围放置一个元素:

<?php if ( $content_source == \'excerpt\' ) { ?>
    <div class="excerpt">
        <?php the_excerpt(); ?>
    </div>
<?php } else { ?>
    <div class="content">
        <?php the_content(); ?>
    </div>
<?php } ?> 

SO网友:girishgv21

<?php
        if ( $content_source == \'excerpt\' ) {
            the_excerpt();
        } else {
        ?>
            <div class="post_content"><?php the_content(); ?><div>
        <?php
        }
?> 
目标p 在…内div.post_content

SO网友:Ramin Jormozeh

Like this:

<p class="description"><?php echo  get_the_content();?></p>
结束