Month: September 2017

WordPress how to make index page the default front page

Hi, today we are going to learn how to Develop WordPress FrontPage an index.php file of default FrontPage for WordPress custom theme. If you have not selected any static front page then the index, PHP file will be fetched as frontpage in WordPress. Now write the code in index.php file if not created please create […]

Read More

WordPress how to develop custom post type

Hi, In this WordPress custom post loop with arguments we are going to learn how to declare a custom post with argument and use the custom post in frontend as a slider. Now start to make a custom post for slider step by step Step 1. Open function.php file of your theme folder and write […]

Read More

WordPress how to create dynamic sidebar with widget supportable

Hi, in this post I am going to show how to Develop WordPress dynamic sidebar with a widget for a custom WordPress theme, for that First: Go to function.php file and write the below code to declare a sidebar //To Register a sidebar function theme_slug_widgets_init() { register_sidebar( array( ‘name’          => __( ‘Main Sidebar’, ‘theme-slug’ ), […]

Read More

How to Develop WordPress theme default footer 

Hi, in this post-Develop Footer for a custom WordPress theme, I am going to show how to make a WordPress footer for a custom WordPress theme, for that First: Create a footer.php file   Second: paste the common HTML portion for footer   Third: before end of body write the function <?php  wp_footer(); ?>   […]

Read More

How to develop a WordPress responsive bootstrap 3 menu

Hi, in this post I am going to show you how to create a WordPress bootstrap menu without using any plugin, for that follow the steps, Step 1. Download the bootstrap nav walker file from GitHub following the link: https://github.com/wp-bootstrap/wp-bootstrap-navwalker/blob/master/wp-bootstrap-navwalker.php Step 2. First, include the downloaded nav walker file placing into your theme folder Step […]

Read More

How to make WordPress dynamic menu or nav bar

Hi, in this post How to make a WordPress dynamic menu. I am going to show you how to declare menus in functions.php file and fetch the menu in frontend. Now start to make a dynamic menu step by step Step 1. Declare menu in functions.php file Sample code: //To register nav menu function register_my_menus() […]

Read More

How to make WordPress theme header file

Hi, in Develop theme header of WordPress post I am going to show you how to develop a custom header.php or common header for WordPress theme from an HTML pice saved as header.php First I am describing the code should be used for header portion and then will show a sample header code with HTML […]

Read More

WordPress theme identifying image screenshot.png

In this post, I am going to show how to make a theme identification image or featured image of the theme, For that, you need to take a screenshot of the HTML page or any image you want to make the theme identification image or featured image of the theme and save the image in […]

Read More

Tutorial on WordPress theme option page and use the data

In this post How to Make a WordPress theme options page or an admin menu page for WordPress theme, I am going to show how to make a setting page for WordPress custom theme. Open your theme function.php file and write the code Now start the code step by step Step 1. Create a menu […]

Read More

How to make WordPress functions file the functions.php

Hi, in this post the uses of functions.php file of WordPress theme development I am going to show you the uses of functions.php file of a WP theme. The functions.php file uses for defining all the functions and hooks inside a WordPress theme development. In this post, I will teach about some basic function like […]

Read More