How to Make Or Generate ShortCode Of any Function Add Hooks for shortcodes <? // syntax php add_shortcode( $tag , $func ); ?...
Home / Archive for August 2015
How to Install Wordpress
How to Install Wordpress Step:1 First make Database in MySql like "wpdemo" Step:2 Then Place wordpress zip file...
How to Add Wordpress category programmatically
How to Add Wordpress category programmatically function example_insert_category() { wp_insert_category( array( 'cat_name...
How to Insert Post Programmatically
How to Insert Post Programmatically (dynamics published) global $user_ID ; $new_post = array ( 'post_title' => '...
How to Fetch post from database
How to Fetch post from database: <?php $getpostdraft = $wpdb -> get_results ( " SELECT ID, post_title FROM $wpdb-...
How to make post Pagination Without Plugins
How to make post Pagination Without Plugins <?php function my_pagination ( $pages = '' , $range = 2 ) { $showitem...
Wordpress custom post fetching
Wordpress By Default array : <?php $args = array ( 'posts_per_page' => 5 , 'offset' => 0 , ...
Subscribe to:
Posts
(
Atom
)