HTML to WordPress
Convert HTML to WordPress theme part-2
Convert HTML to WordPress theme part-1 in this tune I start how to convert HTML to wordpress theme development. In this I going to describe more about wordpress theme development. 10. To register widget: In functions.php file: function my_custom_theme_widgets() { register_sidebar( array( 'name' => 'Widget Name', 'id' => 'widget_id', 'before_widget' => '<div class="single_sidebar fix">', 'after_widget'… Read More
HTML to WordPress
Convert HTML to WordPress theme part-1
This is first chain tune. In this tune I going to steps by step guide “How to convert a HTML template into wordpress theme”. From this tune everyone can easily convert HTML to wordpress theme 1. Index.html rename index.php 2. Must need a style.css same location in index.php and also can add screenshot.png image for… Read More
WordPress Development, WP Code Snippet
In URL extension action PHP if condition use
In this tune I am going to discuss about how to use php if condition in url extension. One of my client use “wordpress-wiki-plugin” in a website. If you are use the plugin every single post show two additional menu like tab menu name “Discussion” and “History”. Client want to remove some section when in… Read More
Envato Market
Envato Market introducing
Envato Market is popular sales platform for digital items. Only quality digital products approved by author on this market. Envato’s stock to a thriving community of over 5 million users across eight marketplaces. Everyone easily can buy from there digital products, the price also get low. There popular eight marketplaces is: ThemeForest Launch beautiful, responsive… Read More
WordPress Development, WP Code Snippet
Create custom WordPress registration form
Registration form is very important for user registration. Though wordpress has a default registration form and url. Simple take below function in your wordpress functions.php file. class jeba_registration_form { private $username; private $email; private $password; private $website; private $first_name; private $last_name; private $nickname; private $bio; function __construct() { add_shortcode('jeba_registration_form', array($this, 'shortcode')); add_action('wp_enqueue_scripts', array($this, 'flat_ui_kit')); }… Read More
Wordpress Security, WP Code Snippet
Limit Login Attempts Without Plugin
We know that limit login attempts is very important for wordpress security. In this tune I am going to describe how to use limit login attempts without using plugin. The limit login attempts very easy to use in your wordpress site. Just add below function in your theme functions.php file. /** * CLASS LIMIT LOGIN… Read More
WP Code Snippet
Preventing Access wp-admin From Users
To more secure wordpress website can preventing access wp-admin from user. Only administrator can be access the site wp-admin. For prevent access wp-admin from user just take below function in your theme functions.php file. function jeba_blockusers_init() { if ( is_admin() && ! current_user_can( 'administrator' ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )… Read More
WP Code Snippet
Add Custom Post Types to Main Loop
function add_to_main_loop($query) { if ($query->is_main_query()) { $query->set('post_type', array('post','POST_TYPE')); } } add_action('pre_get_posts', 'add_to_main_loop'); Read More
WP plugin
Easy Smart Map
This is Easy smart map wordpress plugin. Really the map looking awesome and also easy to use. [jeba_gmap text=”Here use description about the map location. Can use multiple description use HTML break tag Email: [email protected]” location=”Bajalia, Chittagong, Bangladesh” zoom=”9″] “Easy Map in wordpress” Documentation by “wpexpert plugin marketing” v1.0 “Easy Smart Map in wordpress” Created:… Read More
WP plugin
How to use Better Scrollbar in wordpress Plugin
To change default wordpress website scrollbar can use the better scrollbar wordpress plugin. this is easy to use. looking a nice better scrollbar. use to customize. Download To Get Premium support Email us “Better Scroll in wordpress” Created: 10 Feb 2015 By: wpexpert plugin marketing Table of Contents About the plugin Installation Configuration Examples Sources… Read More