在我的Wordpress网站上,当我点击我的投资组合类别时,它会显示标题'博客档案',这不是我想要的。
我想要一个'投资组合'的标题。所以我找到了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>
在我看来,“投资组合”页面正在使用存档模板来显示帖子,因为上面显示“如果还有其他内容被加载,例如。如果缺少标签或类别模板,则此页面将加载“
所以我的问题确实是,将“博客档案”更改为投资组合是否可以,或者我应该为投资组合类别创建一个页面,因为投资组合页面本身显示标题确定。
干杯,Rich:)
答案 0 :(得分:0)
首先,查看是否有category.php
模板。如果是,请将其复制到category-portfolio.php
;如果没有,请将archive.php
复制到category-portfolio.php
。然后编辑新文件并删除您不想要的任何标题代码(如果有category.php
代码可能与archive.php
略有不同,因为它更类似于类别显示)。当您选择Portfolio
类别时,WP将自动使用新模板。
(我假设这是你自己的主题。如果没有,创建一个子主题,将新文件放在那里,然后选择它。这样,如果你当前的主题升级,你将不会被烧毁。) / p>