0

谷歌搜索后,我发现了很多这样的结果。

搜索:<a href="<? php the_permalink()" /> <?php the_title()?> </a>

在主题目录中的 single.php 或 page.php 或 index.php 中。

我找不到(只是寻找标题,而不是整个句子)。

我正在使用 Fastfood 主题,我一直在查看 single.php、page.php 和 index.php(所有这些文件都是 1 或 2Kb,所以我的搜索不可能失败。

'C:...\apache2\htdocs\wordpress\wp-content\themes\fastfood\' 这是我正在查看的目录。

有人知道我必须查看哪个文件/目录吗?

谢谢你们的时间。

编辑:不在 header.php 中,但足够接近:

4

2 回答 2

0

functions.php找到调用的函数fastfood_featured_title。更改以下行:

if ( $post_title || $thumb ) $post_title = '<h2 class="' . $title_class . '"><a title="' . $args['title'] . '" href="' . $args['href'] . '"' . $link_target . ' rel="bookmark">' . $thumb . $post_title . '</a></h2>';

至:

if ( $post_title || $thumb ) $post_title = '<h2 class="' . $title_class . '">' . $thumb . $post_title . '</h2>';
于 2013-05-23T19:36:46.097 回答
0

如果您使用的是 Linux 或 MacSOX,您可以使用find命令,打开终端,进入主题文件夹并输入

find . -type f -name \*.php -print0 | xargs -0 grep -i the_title()

你会看到在哪里the_title()使用,然后你可以修改它

使用 Windows - 我真的不知道,请检查该链接: http: //msdn.microsoft.com/en-us/library/017ybd7t (v=VS.80).aspx

编辑

在 Windoze 中的替代方法find似乎是findstr,尝试类似

FINDSTR /s /i the_title() *.php

于 2013-05-23T19:30:34.790 回答