Link css, js and images in custom wordpress theme
The JavaScript and these images play a very important role in any website. As you all know, the design of any website depends on these three things. Without these three,…
The JavaScript and these images play a very important role in any website. As you all know, the design of any website depends on these three things. Without these three,…
As you all might know how important header and footer are for any site, the total navigation of any website is done on header and footers only and with the…
Although there are many folders and files in WordPress, but there are only a few files and folders which we keep using a lot, it is useful for us in…
We can add/include any php file to wordpress other php file inside the wordpress custom theme by using this steps: functions.php function shortcode_fun(){ include_once get_theme_file_path().'/shortcodes/form.php'; } add_shortcode('sc', 'shortcode_fun'); shortcodes/form.php <div…
Normally, you will use shortcodes inside content areas like posts, pages, or sidebar widgets. However, sometimes, you may want to add a shortcode inside your WordPress theme. In this article,…
On your WordPress website, post types are used to help distinguish between different content types in WordPress. Posts and pages are both post types but are made to serve different purposes. Download &…
Friends, navigation is very important for any site, as you know, almost all the pages in any site are linked to the navigation menu and there are some pages which…