Palabras footer
-
Hola,
Paso mis páginas para ver la densidad de palabras claves y me aparecen las palabras del footer (copyright y dirección) aunque tenga texto y otras palabras que se repitan más veces. Utilizo Yoast Seo.He encontrado esto donde aparece el footer arriba (en mi sitemap aparecen las páginas. No tengo ningún slider. Y en widgets aparece: right widgets (nada dentro), y si aparecen widgets en el footer):
Current Settings in XML format <?xml version="1.0" encoding="UTF-8"?> <site_settings> <ace_theme_color></ace_theme_color> <ace_favicon>https://xxxx.com/wp-content/uploads/2022/05/xxxx.png</ace_favicon> <ace_footer_credit>Copyright © Todos los derechos reservados.</ace_footer_credit> <ace_link>#253594</ace_link> <ace_link_hover>#b9d7ef</ace_link_hover> <ace_nav_bar></ace_nav_bar> <ace_button_bg>#253594</ace_button_bg> <ace_button_border>#253594</ace_button_border> <ace_button_text>#ffffff</ace_button_text> <ace_button_bg_hover>#b9d7ef</ace_button_bg_hover> <ace_button_border_hover>#b9d7ef</ace_button_border_hover> <ace_button_text_hover>#666</ace_button_text_hover> <ace_h1>#494949</ace_h1> <ace_h2>#494949</ace_h2> <ace_h3>#333333</ace_h3> <ace_h4>#333333</ace_h4> <ace_h5>#555555</ace_h5> <ace_h6>#555555</ace_h6> <ace_></ace_> <ace_header_scripts></ace_header_scripts> <ace_footer_scripts></ace_footer_scripts> <ace_css></ace_css> <ace_feature_enable>true</ace_feature_enable> <ace_feature_enable_home>true</ace_feature_enable_home> <ace_feature_title_enable>true</ace_feature_title_enable> <ace_featured_slide_style></ace_featured_slide_style> <ace_featured_slide_pause></ace_featured_slide_pause> <ace_featured_slide_speed></ace_featured_slide_speed> <ace_enable_breadcrumb></ace_enable_breadcrumb> <ace_enable_excerpt></ace_enable_excerpt> <ace_enable_related></ace_enable_related> <ace_enable_post_thumbnail></ace_enable_post_thumbnail> <ace_thumb_width>640</ace_thumb_width> <ace_thumb_height>350</ace_thumb_height> <ace_404_page>El recurso que buscas es erróneo o ya no existe. Puedes ir a nuestra ⇒ <a href=\"https://xxxx.com/\"><span style=\"color: #0000ff;\">página principal</span></a>. O usar este buscador para encontrar lo que necesites: </ace_404_page> </site_settings>
Si dejo sin rellenar footer credit se me multiplican el % de densidad de palabras claves de los textos.
Archivo footer:</section><!-- .container --> <footer class="footer"> <?php if ( is_active_sidebar( 'footer-widget' ) ) : ?> <section class="footer-inner" role="complementary"> <?php dynamic_sidebar( 'footer-widget' ); ?> </section><!-- .footer-inner --> <?php endif; ?> <p class="footer-copy" role="contentinfo"> <?php if ( get_option( 'ace_footer_credit' ) == true ) { echo stripslashes( get_option( 'ace_footer_credit' ) ); } else { ?>© <?php _e( 'Copyright','ace' ); ?> <a href="<?php echo esc_url( home_url() ); ?>"><?php bloginfo( 'name' ); ?></a> <?php echo date( 'Y' ); ?>. <?php _e( 'Powered by','ace' ); ?> <a href="<?php echo esc_url( 'http://www.wordpress.org' ); ?>">WordPress</a>. <a href="<?php echo esc_url( 'http://www.bluchic.com' ); ?>" title="<?php _e( 'Theme designed by BluChic','ace' ); ?>" class="footer-credit"><?php _e( 'Designed by','ace' ); ?> BluChic</a><?php } ?> </p> </footer><!-- .footer --> <?php echo ace_footer_scripts(); ?> <?php wp_footer(); ?> </body> </html>
(aunque cambie el body al principio del archivo sigue igual)
- El debate ‘Palabras footer’ está cerrado a nuevas respuestas.