是的,你可以这样做,只需找到文本所在的文件,可能是一个。php或single-{post\\u type}。php或存档{post\\u type}。php然后,查找要更改的字符串擦除它并设置一个变量,如下所示:
如果字符串所在的文件是该特定帖子类型的模板文件,则您将仅为所需内容替换该字符串:
<h2>Comments are closed<h2> //Replace comments are closed for Hello World
请记住,您在注释、页脚或侧边栏中找到的字符串位于单独的文件中,在这种情况下,为post类型提供HTML结构的文件是单个的。php中,您必须在循环中执行以下操作:
<?php
$post_type = get_post_type( get_the_ID() );
$the_string = "comments are closed";
if ($post_type === "my_post_type") {
$the_string = "Hello World!";
}
?>
<h2><?php echo $the_string; ?></h2>