我有一个页眉,该页眉正在复制到我要完全删除的所有博客文章中。我正在通过CSS从视觉上删除它,但SEO搜寻器仍在通过标签来获取它。
我正在使用标准的wordpress,并在其中添加Elementor。 Here is a screenshot of the SEO report.
And here is a screenshot of the actual HTML code
让我知道您是否还有其他问题!谢谢您的帮助!
答案 0 :(得分:0)
如果在单个博客文章上,您可以做出一个仅输出文章标题的条件语句,类似这样
<div class="container clr page-header-inner">
<?php
// Return if page header is disabled
if ( oceanwp_has_page_header_heading() ) { ?>
<!-- check to see if single blog posts -->
<?php if (is_single()) : ?>
<h1><?php echo get_the_title(); ?></h1>
<!-- otherwise show the existing title format -->
<?php else: ?>
<<?php echo esc_attr( $heading ); ?> class="page-header-title clr"<?php oceanwp_schema_markup( 'headline' ); ?>><?php echo wp_kses_post( oceanwp_title() ); ?></<?php echo esc_attr( $heading ); ?>>
<?php endif; ?>
<?php get_template_part( 'partials/page-header-subheading' ); ?>
<?php } ?>
<?php if ( function_exists( 'oceanwp_breadcrumb_trail' ) ) {
oceanwp_breadcrumb_trail();
} ?>
</div><!-- .page-header-inner -->
您将不得不替换existing code