如何更改WordPress存档页面标题

时间:2013-06-21 12:29:00

标签: php wordpress

我想将“投资组合档案”中的文字(如下图所示)更改为“商店”。

我有archive.php和portfolio.php文件,其中没有一个明显表明如何/在何处更改文本。

screen shot http://damtech.it/screen.png

3 个答案:

答案 0 :(得分:0)

您的图片链接已损坏......

但标题通常在header.php文件中。

答案 1 :(得分:0)

我上周也遇到过这个问题。我正在使用一个主题。这可能会帮助你或者可能不会。但我面临同样的问题,所以我正在回答。

如果您正在使用某个主题。那么应该有Theme Setting。 转到theme setting,会有Headerfooter个选项。您可以从那里更改此文字。我的问题已经解决了。

答案 2 :(得分:0)

对于其他浪费时间尝试批准答案的人,请阅读https://codex.wordpress.org/Function_Reference/get_header处的功能参考并注意此部分:

多个标题

不同页面的不同标题。

<?php
if ( is_home() ) :
    get_header( 'home' );
elseif ( is_404() ) :
    get_header( '404' );
else :
    get_header();
endif;
?>

home和404标头的文件名分别应为header-home.php和header-404.php。

导致以下成功的方法。

  1. 将您的(yourthemename)/header.php文件复制到(yourthemename)/header-customname.php

  2. 将您要定位的文件中的get_header()来电更改为get_header('customname')

  3. 完成工作。