WordPress Development
Automatically Add login or logout Option Item in Menu
This important that some we need to add use login button in font-end specially in menu. In this tune going describe a easy function to add login or logout option in menu item. To add the use login and logout option just take below function in your wordpress theme functions.php file. add_filter( 'wp_nav_menu_items', 'add_logout_link', 10,… Read More
WordPress Development
Own Theme Setting Page for WP Theme
In wordpress theme development theme setting page is very important to handle a easily. Most of the premium theme have own theme setting page to handle logo, footer text, to use google analytic code. In this tune easily describe how to create and use a theme setting page. Step-1: Add below function in your theme… Read More
WP Plugin Development
How to Use WordPress Setting API
WordPress setting option and setting API especially very important for wordpress plugin development. The setting API help to easy to use a plugin. In this tune I am going describe how to use wordpress setting API. Let’s start tune.. To use wp setting API use below function in your theme functions.php file or plugin. Here,… Read More
WordPress Development
How to get wordpress author information
To get wordpress author information in your theme need to use below function. <?php the_author(); ?> <?php echo get_avatar( get_the_author_email(), 'size here' ); ?> <?php echo the_author_link(); ?> <?php the_author_posts_link(); ?> <?php the_author_meta( $field, $userID ); ?> <?php the_author_meta('social'); ?> <?php the_author_description(); ?> <?php echo date("D M Y", strtotime(get_userdata(get_current_user_id( ))->user_registered)); ?> Line-1: To get wordpress… Read More
WordPress Development
How to Change WordPress admin bar Greeting Howdy text
If your using wordpress CMS, you must seen a common greeting “Howdy” in wp admin bar. In this tune I am going to describe how change or remove the greeting “Howdy” text. Ok let’s start, “How to Change WordPress admin bar Greeting Howdy text”. Taking below code in your wordpress theme functions.php file. add_action( 'admin_bar_menu',… Read More
Wordpress Security
How to Auto Log out Idle Users After Fixed Time
We are seen that many important website like bank website auto log out if idle a fix time. Actually by using this system are increase website security. Recently wordpress website also the facility for more secure website. To use the system in your wordpress theme your need take function. In this tune I am going… Read More
Woo-commerce
How to Make WP theme Woo-commerce Supported
In this tune I am going to describe “How to Make WP theme Woo-commerce Supported”. Sometimes wordpress ready theme which buy or created may not have woo commerce supported. In this tune steps by step describe how to make woo commerce support easily. Step-1: Duplicate or copy page.php file and rename woocommerce.php Note: The woocommerce.php… Read More
Jquery Plugin Convert into WP Plugin
How to Divas Slider Jquery Plugin Convert into WP Plugin
In this tune I am going to describe “How to Divas Slider Jquery Plugin Convert into WP Plugin”. First of all wanna want to show Divas Slider Demo and my converted wordpress plugin Jeba Divas Slider. Now let’s start to describe how converted the plugin into wordpress plugin. In instruction page given, to use the… Read More
Option Framework
How to use Option Framework in WP Theme
Option Framework(SMOF) a popular wordpress option framework for theme option UI. SMOF – Slightly Modded Options Framework. Really this UI looking better than other option framework theme option like option tree but SMOF framework only for theme option. The framework can not use in metaboxes. Ok, now let’s start how to use SMOF framework in… Read More
CMB Custom Metaboxes
Custom Metaboxes and Fields WordPress Uses
To make wordpress theme user friendly admin penal we are use some framework like option tree, SMOF, Redux etc. Custom Metaboxes and Fields WordPress is also a popular framework for metaboxes awesome UI. This framework can use alternative of option tree metaboxes. In this tune I going to show how to use the framework in… Read More