<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="pagecontent-header">
<?php the_title( \'<span class="entry-title">\', \'</span>\' ); ?>
<p class="tagline"><?php the_field(\'tagline\'); ?></p>
</header><!-- .entry-header -->
<div class="entry-content">
<div class="container" style="padding: 50px 0px">
<div class="col-md-10 col-md-offset-1 generic_content text-center">
<?php
the_content();
?>
</div>
</div>
</div><!-- .entry-content -->
</article><!-- #post-## -->
上面的代码是我的内容页。php。我可以用什么条件语句包装标题,以便通过页面的slug调用不同的标题?谢谢