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 […]

Opencart
1 min read

How to create a product in Opencart 3.X

In this video tutorial I will going to show you everything you need to know about creating new products to OpenCart 3.x. Video description : English Video Language : Hindi

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 […]

PHP
1 min read

PHP Final Keyword with Example

In this tutorial we are going to learn PHP Final Keyword with Example. If you are new to Object Oriented Programming then please learn it as PHP final keyword used with Classes and methods. Use of PHP Final Keyword : PHP Final Classes prevent inheritance Final Methods prevent Method Overriding Final Class Example : If […]

Opencart
1 min read

Download All Indian Pincode in csv and excel format

If you want to download all Indian pin code or postcode in csv or excel format then this post can help you. In case of custom application that depends on Indian pincode or any eCommerce website that offer pincode based delivery option then we need all Indian pincode in csv or excel format to upload […]

PHP
7 mins read

How to send attachments using PHP Mail()

In this post, we will going to learn how to can send an email with attachments using PHP mail() function. Sending an attachment with PHP mail() function is painful so people prefer to use PHP Mailer library, but in this post we are not going to use any library, we send attachments using PHP  mail() […]