无法使用 CSS 完成,但您可以使用显示网站标题本身
<?php echo $bloginfo('name'); ?>
如果您只想在一个页面上删除它,请使用条件 IF 语句查询页面 ID 或 slug 并设置不附加站点 URL 的版本,并使用 ELSE 设置带有 URL 的版本。
要删除了解更多文本,请将此代码添加到 functions.php 文件的末尾:
function improved_trim_excerpt($text) { // Fakes an excerpt if needed
global $post;
if ( '' == $text ) {
$text = get_the_content('');
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]>', $text);
$text = strip_tags($text, '<p>');
$excerpt_length = 100;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words)> $excerpt_length) {
array_pop($words);
array_push($words, '');
$text = implode(' ', $words);
}
}
return $text;
}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'improved_trim_excerpt');
如果我是正确的,主题开发人员添加了一个自定义摘录结尾。或者它只是一个硬编码链接,在这种情况下,进入头文件并使用您正在使用的任何编辑器的查找功能并搜索“了解更多”文本,然后删除它和它周围的标签。