May 27th, 2016 by admin
In WordPress, all sub-menus have the class ‘sub-menu’. To change it to a custom class, add the following code in your functions.php file. [php] function change_submenu_class($menu) { $menu = preg_replace(‘/ class="sub-menu"/’,’/ class="myclass" /’,$menu); return $menu; } add_filter(‘wp_nav_menu’,’change_submenu_class’); [/php]
May 9th, 2016 by admin
[php] <?php $allow = array("192.168.0.103", "45.120.124.38", "789.123.456"); if(!in_array($_SERVER[‘REMOTE_ADDR’], $allow) && !in_array($_SERVER["HTTP_X_FORWARDED_FOR"], $allow)) { $retry = 60 * 60; // = 60 minutes header("HTTP/1.1 503 Service Unavailable"); header("Retry-After: $retry"); echo " <h1>Site update in progress – Please return in 60 minutes!</h1> "; exit(); } ?>[/php]
April 28th, 2016 by admin
[php] <?php the_permalink() ?>"><?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { ?> <img src="<?php bloginfo(‘template_directory’); ?>/images/youtubethumb.png" alt="<?php the_title(); ?>" /> <?php } ?> [/php]
April 28th, 2016 by admin
[php] /** * Recent_Posts widget w/ category exclude class * This allows specific Category IDs to be removed from the Sidebar Recent Posts list * */ class WP_Widget_Recent_Posts_Exclude extends WP_Widget { function __construct() { $widget_ops = array(‘classname’ => ‘widget_recent_entries’, ‘description’ => __( "The most recent posts on your site") ); parent::__construct(‘recent-posts’, __(‘Recent Posts with Exclude’), […]
April 15th, 2016 by admin
1.First Step add this code in “function.php” [php] function pagination($pages = ”, $range = 4) { $showitems = ($range * 2)+1; global $paged; if(empty($paged)) $paged = 1; if($pages == ”) { global $wp_query; $pages = $wp_query->max_num_pages; if(!$pages) { $pages = 1; } } if(1 != $pages) { echo " <div class="\"pagination\"">Page ".$paged." of ".$pages.""; if($paged […]