如何隐藏博客标题post只显示H1标题?
How to hide the title of blog post and only show the H1 title?
我只想向搜索引擎显示我的博客标题 post,并希望向我的博客中的读者显示 h1 标题 post。
但是每当我在 WordPress 上写标题并点击更新时。它显示了标题和 h1 标签。
所以这对我和读者来说都很烦人。
我已经安装了 "title remover" 插件,现在我在博客中看不到标题 post。这样问题就解决了。
但是我想知道有没有其他方法可以隐藏标题,只在搜索结果中显示?
我附上了屏幕截图以便更好地理解。基本上,我在许多博客上看到它们只在搜索结果页面上显示标题,但是当我们单击时,我们会在 posts.
中看到 h1 标签
我只想显示搜索页面的标题而不是在博客 posts 里面。
这是截图
Wordpress interface
Blog Page where I want only H1 to show and not title
Title Remover Plugin Interface
我想知道有没有其他方法可以从博客中删除标题post?
当然有一个简单的解决方法,您需要浏览您的主题并找到您的 post 模板 - wp-content->themes->my_theme_name。现在不同的主题可能有不同的 file/folder 结构,但通常在根主题文件夹中显示你的 posts 的文件被称为 single.php 打开这个文件,你会看到 WP 循环调用将输出您的 post 内容的模板 - 类似这样 - http://joxi.ru/YmE6BlxC0W5jR2 When you locate your template which outpust your posts content you will see the the_title() - the function that 'prints' your posts title - http://joxi.ru/4AkknX4IyGZR8A
编辑 css 您的博客标题并添加此 css 代码
.post-title {
display: none;
}
我只想向搜索引擎显示我的博客标题 post,并希望向我的博客中的读者显示 h1 标题 post。
但是每当我在 WordPress 上写标题并点击更新时。它显示了标题和 h1 标签。
所以这对我和读者来说都很烦人。
我已经安装了 "title remover" 插件,现在我在博客中看不到标题 post。这样问题就解决了。
但是我想知道有没有其他方法可以隐藏标题,只在搜索结果中显示?
我附上了屏幕截图以便更好地理解。基本上,我在许多博客上看到它们只在搜索结果页面上显示标题,但是当我们单击时,我们会在 posts.
中看到 h1 标签我只想显示搜索页面的标题而不是在博客 posts 里面。 这是截图 Wordpress interface
Blog Page where I want only H1 to show and not title
Title Remover Plugin Interface
我想知道有没有其他方法可以从博客中删除标题post?
当然有一个简单的解决方法,您需要浏览您的主题并找到您的 post 模板 - wp-content->themes->my_theme_name。现在不同的主题可能有不同的 file/folder 结构,但通常在根主题文件夹中显示你的 posts 的文件被称为 single.php 打开这个文件,你会看到 WP 循环调用将输出您的 post 内容的模板 - 类似这样 - http://joxi.ru/YmE6BlxC0W5jR2 When you locate your template which outpust your posts content you will see the the_title() - the function that 'prints' your posts title - http://joxi.ru/4AkknX4IyGZR8A
编辑 css 您的博客标题并添加此 css 代码
.post-title {
display: none;
}