我在一个我没有创建的Wordpress网站上工作。开发人员使用content-single.php页面来访问网站上的其他内容。现在客户想要一个博客,但我不能使用内容单个php。
不幸的是,Wordpress在博客上为单个页面引用了content-single.php,但这些需要不同的格式。我可以使用if / else语句吗?我不是PHP开发人员,但我正在尝试此修复:
<?php if ( is_category('7') ) {
?>
<p>Thanks so much for your help!</p>
<?php } else { ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="container">
<?php if (get_the_post_thumbnail( $post_id, 'full')) { ?>
<div class="row">
<div class="col-sm-4 col-xs-12 landing-col">
<?php echo get_the_post_thumbnail( $post_id, 'full'); ?>
</div>
<div class="col-sm-8 col-xs-12">
<?php } ?>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-meta">
<?php superhero_posted_on(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'superhero' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( ', ', 'superhero' ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', __( ', ', 'superhero' ) );
if ( ! superhero_categorized_blog() ) {
// This blog only has 1 category so we just need to worry about tags in the meta text
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'superhero' );
} else {
$meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'superhero' );
}
} else {
// But this blog has loads of categories so we should probably display them here
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'superhero' );
} else {
$meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'superhero' );
}
} // end check for categories on this blog
printf(
$meta_text,
$category_list,
$tag_list,
get_permalink(),
the_title_attribute( 'echo=0' )
);
?>
<?php edit_post_link( __( 'Edit', 'superhero' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
<?php if (get_the_post_thumbnail( $post_id, 'full')) { // if there is a first featured image & the featured image is not set to hidden, close the Bootsrap columns ?>
</div><!-- /.col -->
</div><!-- /.row -->
<?php } ?>
</div><!-- /.container -->
</article><!-- #post-## -->
<?php } ?>
从技术上讲,第7类(博客)应该有#34;非常感谢你的帮助&#34;其余页面输出原始代码。但那并没有发生。类别7仍在输出旧代码。
我非常感谢你提供的任何帮助。
卡斯
答案 0 :(得分:0)
你错过了if
声明中的结束语。这导致解析错误,并且因为您没有打开调试,导致页面为空。
应该是:
if ( in_category('7') ) {
答案 1 :(得分:0)
is_category()函数检查归档页面上的类别。我理解这一点,你想要检查帖子(post_category)。为此,您必须使用in_category($ CAT_ID);使用此函数,插入参数类别中的帖子返回true,如果不返回false。