CSSでは実行できませんが、サイトタイトル自体を表示するだけです。
<?php echo $bloginfo('name'); ?>
1つのページでのみ削除する場合は、条件付きIFステートメントを使用してページIDまたはスラッグを照会し、サイト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');
私が正しければ、テーマ開発者はカスタムの抜粋エンディングを追加しました。それまたはハードコードされたリンクのいずれかです。この場合、ヘッダーファイルに移動し、使用しているエディターの検索機能を使用して「詳細」テキストを検索し、それとその周囲のタグを削除します。