从博客文章中删除页面标题

时间:2020-06-11 14:43:06

标签: wordpress

我有一个页眉,该页眉正在复制到我要完全删除的所有博客文章中。我正在通过CSS从视觉上删除它,但SEO搜寻器仍在通过标签来获取它。

我正在使用标准的wordpress,并在其中添加Elementor。 Here is a screenshot of the SEO report.

And here is a screenshot of the actual HTML code

让我知道您是否还有其他问题!谢谢您的帮助!

1 个答案:

答案 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