• I like this theme quite a bit, but did HEAVY customization [ link redacted, please do not post links in reviews ]

    However, I did run into one major problem.
    The following section, contained in sidebar.php, results in this text being included in the source of every page if the right sidebar widget is not used. This code got indexed by Google and resulted in 150 instances of the “keyword” WIDGET. I had to go into sidebar.php and edit the default text inside the single quotes because my website is not about widgets, but Google now thinks that it is.

    the_widget( 'WP_Widget_Text',
                array(
                   'title'  => __( 'Example Widget', 'colormag' ),
                   'text'   => sprintf( __( 'This is an example widget to show how the %s Sidebar looks by default. You can add custom widgets from the %swidgets screen%s in the admin. If custom widgets is added than this will be replaced by those widgets.', 'colormag' ), $sidebar_display, current_user_can( 'edit_theme_options' ) ? '<a href="' . admin_url( 'widgets.php' ) . '">' : '', current_user_can( 'edit_theme_options' ) ? '</a>' : '' ),
                   'filter' => true,
                ),
  • The topic ‘Right Sidebar example text gets indexed by Google’ is closed to new replies.