How to Create Custom Taxonomy in WordPress?
We can easily do this by using the register_taxonomy() function into our functions.php file. Just open your functions.php file. And paste the below code at the …
What Template Files Are Used For Our Custom Post Type In WordPress?
there are two files that can be used for our own created custom post type. the files are: archive.php single.php To use the files we will …
Get WordPress Posts By Category Name..!
its easy to get the WordPress posts by Category name. That means your posts will only display if the post has selected a specific category. To …
Get The Posts By Category Id..!
yeah… it is the coolest way to show posts by category id. you don’t need to go longer. yes, copy paste below code and it’s done..!! …
The correlation between a sticky menu and branding
When you are starting your business and decide to think of all the ways to help you do all the things needed for success, it is …
Custom Redirect after purchase in Woocommerce
Solved 1st: If you want to redirect a customer to a different page rather than the Thank you page, like for example, the My account page, …
Top 9 Security Fixes For WordPress SEO
WordPress is a content management system, that allows creators to produce plugins, themes, and other essentials. Creating a system where, each developer has to keep their …
How to Remove or Hide the Add to Cart button from a specific product of WooCommerce Plugin?
You can Hide or Remove the Add to cart button of the WooCommerce plugin by using any of the steps that we have listed below. Removing …
Get menus by name in WordPress….!!!
Source file wp_get_nav_menu_object() is located in wp-includes/nav-menu.php. to get the menu by its name. use below code: crayon-62c250ce33a6d691122755/ Just Copy and paste the above code where …
How to Create Registration Form in WordPress Without Plugin?
Yes, We can Create a Custom register form without using any plugin.
Below i will tell you step by step Example in details that i have already implemented in a wordpress website.
First We need to Create a template for the register form:
Let say tmpl-register.php is our file name:
What is the difference between the wp_title and the_title tags?
The wp_title and the the_title both are the different functions of WordPress and have a different purpose. Normally we see these function as the same but …