Tag functions.php
Widget area in admin area not expanding
If you did not install any plugins then fault is in your functions.php file of active theme. You need to delete last closing “?>” that is closing tag of php. Remove final closing tag of php. In case if this…
Favicon
1 2 3 4 5 6 /** FAVICON ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ function favicon_link() { echo ‘<link rel="shortcut icon" href="’ . get_stylesheet_directory_uri() . ‘/pix/favicon.ico" />’ . "\n"; } add_action(’wp_head’, ‘favicon_link’);/** FAVICON ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ function favicon_link() { echo ‘<link rel="shortcut icon" href="’ .…