Customise search form in the Widget

if your theme have not search-form.php file then you will create the file and add the custom css there. Because search widget is calling the get_search_form() function. First it will search the search-from.php file from activated theme folder. If there have no file then it will call wp’s default search form. See the Codex

How to use stack flair on my site?

I think it’s pretty self-explanatory, see the SE flair page. https://wordpress.stackexchange.com/users/flair Simply copy the provided HTML and paste it into the appropriate template file. I didn’t down vote, but i can understand why, this is really basic copy and paste HTML..

Which file displays the date archive?

archive.php is used to display author, search, category, tag and date archives. As clicking on a calendar day will take you to the date archive for that day, then the file you’re looking for is archive.php. More specifically, WordPress will check for these files in this order, stopping when it finds one of these files … Read more

How Can I Register Menus and Widgets Conditionally Based on Theme Options/Settings?

Below is the code you need. Your issue could be that you’re not first setting up the variable $display_options to contain your options, or that you not asking if the option is set. add_action(‘widgets_init’, ‘arphabet_widgets_init’); function arphabet_widgets_init() { $options = get_option(‘muffin_options’); if(isset($display_options[‘header_layout’]) && $display_options[‘header_layout’] == ‘1’) { register_widget(‘arphabet_widget_1’); } if(isset($display_options[‘header_layout’]) && $display_options[‘header_layout’] == ‘1’) { … Read more