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 […]
Category: Uncategorized
Custom WP Code
Custom category Display Code Reference link
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? […]