0

在我的 Wordpress 网站上,当我单击我的投资组合类别时,它会显示标题“博客档案”,这不是我想要的。

我想要一个 'Portfolio' 的标题。所以我找到了 archive.php 的模板文件,它基本上说如果变量 is_Day、is_Month 或 is_Year 设置,然后显示相关的归档标题,否则显示 'Blog Archive' ,见下面的代码

<h2>
    <?php if ( is_day() ) : /* if the daily archive is loaded */ ?>
  <?php printf( __( 'Daily Archives: <span>%s</span>' ), get_the_date() ); ?>
<?php elseif ( is_month() ) : /* if the montly archive is loaded */ ?>
  <?php printf( __( 'Monthly Archives: <span>%s</span>' ), get_the_date('F Y') ); ?>
<?php elseif ( is_year() ) : /* if the yearly archive is loaded */ ?>
  <?php printf( __( 'Yearly Archives: <span>%s</span>' ), get_the_date('Y') ); ?>
<?php else : /* if anything else is loaded, ex. if the tags or categories template is missing this page will load */ ?>
  <?php _e('Blog Archive', 'theme5820'); ?>
<?php endif; ?>
</h2>

在我看来,投资组合页面正在使用存档模板来显示帖子,因为上面说'如果加载了其他任何东西,例如。如果缺少标签或类别模板,则将加载此页面'

所以我的问题真的是,是否可以将“博客存档”更改为投资组合,或者我应该为投资组合类别创建一个页面,因为投资组合页面本身显示标题正常。

干杯,丰富:)

4

1 回答 1

0

首先,看看有没有category.php模板。如果是这样,请将其复制到category-portfolio.php;如果没有,请复制archive.phpcategory-portfolio.php. 然后编辑新文件并删除您不想要的任何标题代码(如果有category.php代码可能会有所不同,archive.php因为它更特定于类别显示)。Portfolio当您选择类别时,WP 将自动使用新模板。

(我假设这是在您自己的主题中。如果没有,请创建一个子主题,将新文件放在那里,然后选择它。这样,如果您当前的主题升级,您就不会被烧毁)。

于 2013-03-18T13:42:48.257 回答