Make WordPress Website Faster SEO
3 mins read

How to make WordPress website faster – 10 Proven Speed Optimization Tips

In this post I are going to discuss how to make WordPress website faster with 10 proven speed optimization tips. A WordPress website faster is super important for SEO, user experience, and conversions . Here’s a complete step-by-step guide for WordPress speed optimization you can follow: 10 proven speed optimization tips to make WordPress website […]

PHP
2 mins read

How to Create a Custom Post Type in WordPress

How to Create a Custom Post Type in WordPress programmatically, If you are a word press developer some time you need to do some thing different, you can’t do every thing in elementor or WP Bakery, word press comes with custom post so first thing is know that What is WordPress custom post ? Custom […]

How to create a new wordpress page programmatically HTML5
3 mins read

Create a wordpress page programmatically and Assign Elementor Full Width Template

With the help of  code given below, you can create dynamic page programitically in Word press. In this tutorial, I will create post programitically and assign elementor’s Full width Template. Create a wordpress page programmatically and Assign Elementor Full Width Template Code: add_action(‘init’, ‘codentricks_create_pg’,””); function codentricks_create_pg($value){ $assignE=sanitize_text_field($_POST[‘assignE’]); $wordpress_page = array( ‘post_title’ => $value, ‘post_content’ => […]

PHP
2 mins read

Advanced custom fields on save function trigger

Advanced custom fields on save function trigger, in this tutorial I am going to share a PHP programme to automatic trigger when a advance custom field save or update from back-end. Recently I have to implement something like in a project, when a mentor create a session for students it will send whats app message […]

PHP
2 mins read

Advanced custom field how to populate select field

In this tutorial we will learn how to dynamically populate Advanced custom field select field in WordPress. I was trying a generate a dynamic select list so when I will create a update it from anywhere else it will automatically display in Advanced Custom Field select field. Advanced custom field how to populate select field […]

Wordpress Wordpress
2 mins read

How to pass extra variables in URL with WordPress

In this tutorial we are going to learn How to pass extra variables in URL with WordPress ? We have to pass  two variables named domain and price. So we need to use url like http://localhost/worpress/get-domain/?domain=.in&price=800 http://localhost/worpress/get-domain/?domain=.com&price=1000 http://localhost/worpress/get-domain/?domain=.info&price=750 First we have to create a page name called Get Domain (which will create url http://localhost/worpress/get-domain/), now […]

Wordpress
2 mins read

How to Use WordPress Customizer in your Theme

WordPress comes with a built-in theme customizer that allows to take your WordPress Theme to the next level. Using Customizer you can change your Site Title and Tagline, add Widgets to a Sidebar or Footer, create Custom Menus, change your Homepage Settings, and more with realtime view. For example we are going to create a […]

Wordpress woo commerce Woo Commerce
1 min read

Woo Commerce Single Product Page customization

If you are running a Woo Commerce powered e commerce website and want to customize single product page then we can do it by editing functions.php file. Like I want to show product description below Title, Hide or remove Product Description Tab,  Hide or remove  related product. Show product description below Title in woo commerce […]