https://phppot.com/php/how-to-create-a-contact-form-in-wordpress/ https://catswhocode.com/wordpress-contact-form-without-plugin/ https://sknetking9.blogspot.com/2022/02/how-to-create-custom-contact-us-page.html WP_Query wpdb How to Create and Use WordPress User Metadata (User Meta) How To Add Custom User Meta During Registration https://webkul.com/blog/wordpress-custom-fields-user-profile-page/ How to add custom fields to the WordPress registration form https://wowlayers.com/when-to-use-esc_attr-esc_html-and-esc_url-in-wordpress/ https://www.wpbeginner.com/wp-tutorials/how-to-get-logged-in-users-info-in-wordpress-for-personalized-results/ How WordPress user data is stored […]
Author: admin
WP Customizer API
The WordPress Customizer – A Developers Guide (Part 1) The WordPress Customizer – A Developers Guide (Part 2) https://diveinwp.com/how-to-add-checkbox-field-to-wordpress-customizer/ https://diveinwp.com/add-dropdown-or-select-pages-in-wordpress-customizer/ https://diveinwp.com/add-image-upload-option-to-wordpress-theme-customizer/ https://diveinwp.com/wordpress-customizer-tutorial-for-beginners/ https://wpmudev.com/blog/wordpress-theme-customizer-guide/ https://www.sitepoint.com/getting-started-with-the-wordpress-theme-customization-api/ data $P$BeSQ/V9MdcgJ9BqpPL20pEYWzoM7kY1
Extra Advance Theme developemnt
Custom WP Code
Custom category Display Code Reference link
Extra Advance Plugin development Basic Theme
Advance Theme Development PDF
Getting Started – A Step By Step Guide for WordPress Theme Development
You might have understood what exactly the WP theme development is? Now it’s time to get started. You need to set up your local development environment. You need to check out some WordPress theme examples before start creating a new theme. So dive into creating a new theme. First of all, you need to create a subfolder […]
WordPress Theme Development Tutorial Step By Step
Step 1: Create a folder to hold your theme files. If we are going to be building themes, we need to know where the files that make up a WordPress theme live in a WordPress Installation. This is pretty easy. We know that a WordPress installation typically has a root directory named wordpress. Here is what […]
Plugin developemt
Create a custom WordPress Plugin from scratch
1) Plugin Directory Creation: Create a directory with your Plugin name.(Like : myPlugin/) myPlugin/ 2) Main Plugin File: In the Plugin directory (myPlugin/) create a PHP file with the same name of the Plugin directory(Like : myPlugin.php). myPlugin/ myPlugin.php 3) myPlugin.php File: In this file you need to write some codes and functions. This file must contain a standard […]
How to Create First WordPress Plugin?
How To Create A WordPress Plugin and Getting Started with WordPress Plugin Development? Are you a new WordPress developer? Have you started working on WordPress recently? Are you looking to create new WordPress Plugin? How to create wordpress plugin from scratch? Well, you are at right place. In this tutorial we will go over how to create your Hello […]
CodeIgniter Interview Questions
1) What is CodeIgniter? CodeIgniter is an open source and powerful framework used for developing web applications on PHP. It is loosely based on MVC pattern and similar to Cake PHP. CodeIgniter contains libraries, simple interface and logical structure to access these libraries, plug-ins, helpers and some other resources which solve the complex functions […]
Protected: VQ
There is no excerpt because this is a protected post.
JavaScript Interview Questions
1) What is JavaScript? JavaScript is a scripting language. It is different from Java language. It is object-based, lightweight, cross-platform translated language. It is widely used for client-side validation. The JavaScript Translator (embedded in the browser) is responsible for translating the JavaScript code for the web browser. More details. 2) List some features of JavaScript. Some of the […]
jQuery Interview Question
1) What is jQuery? jQuery is a fast, lightweight, feature-rich client-side JavaScript library. It is cross-platform and supports different types of browsers. It has provided a much-needed boost to JavaScript. Before jQuery, JavaScript codes were lengthy and bigger, even for smaller functions. It makes a website more interactive and attractive. 2) Is jQuery a programming […]
Bootstrap
CSS Interview Questions
1) What is CSS? CSS stands for Cascading Style Sheet. It is a popular styling language which is used with HTML to design websites. It can also be used with any XML documents including plain XML, SVG, and XUL.More details… 2) What is the origin of CSS? SGML (Standard Generalized Markup Language) is the […]
HTML Interview Questions and Answers
1. Are the HTML tags and elements the same thing? No. HTML elements are defined by a starting tag, may contain some content and a closing tag.For example, <h1>Heading 1</h1> is a HTML element but just <h1> is a starting tag and </h1> is a closing tag. 2. What are tags and attributes in HTML? […]