jQuery, HTML 5,CSS3, CSS2, WordPress, Joomla, Email Template, PHP, CSS
Detecting Frontpage in Joomla
Get link
Facebook
X
Pinterest
Email
Other Apps
<?phpif( JRequest::getVar('view') == 'frontpage'){?>
<!-- display your home page HTML here -->
<?php}else{?>
<!-- display your internal page HTML here -->
<?php}?>
You can use these icons on your mobile applications or mobiles. Mobile Icon Set includes Phone Call, Photos, Messages, Calculator, Wireless, Calendar, Settings, Contacts, Notes, Map. Usage: Free for Personal and Commercial Projects (Size: 128, 64, 48, 32px)
today i show how to display future posts in single.php. you just copy code below into funciton.php. add_filter('the_posts', 'show_future_posts'); function show_future_posts($posts) { global $wp_query, $wpdb; if(is_single() && $wp_query->post_count == 0) { $posts = $wpdb->get_results($wp_query->request); } return $posts; }
Comments
Post a Comment