在我的 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>
在我看来,投资组合页面正在使用存档模板来显示帖子,因为上面说'如果加载了其他任何东西,例如。如果缺少标签或类别模板,则将加载此页面'
所以我的问题真的是,是否可以将“博客存档”更改为投资组合,或者我应该为投资组合类别创建一个页面,因为投资组合页面本身显示标题正常。
干杯,丰富:)