Sidebar
-
I have this sidebar in my site:
/*Register Dynamic Sidebars*/
register_sidebar(
array(
‘name’ => ‘Sidebar’,
‘id’ => ‘sidebar’,
‘description’ => ”,
‘before_widget’ => ‘<li id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ”,
‘before_title’ => ‘<h4 class=”widgettitle”>’,
‘after_title’ => ‘</h4>’
)
);add_theme_support(‘automatic-feed-links’);
add_theme_support(‘post-thumbnails’);but plugin theme check write this:
REQUIRED: Sidebars need to be registered in a custom function hooked to the widgets_init action. See: register_sidebar().RECOMMENDED: No reference to the_post_thumbnail() was found in the theme. It is recommended that the theme implement this functionality instead of using custom fields for thumbnails.
RECOMMENDED: No reference to add_editor_style() was found in the theme. It is recommended that the theme implement editor styling, so as to make the editor content match the resulting post output in the theme, for a better user experience.
What I must do?
- The topic ‘Sidebar’ is closed to new replies.