Ep. 002 – Course Objectives, Requirements, and Outcomes – Learn WordPress in Urdu

In the previous post, we have briefly given the introduction to the course titled “Learn WordPress in Urdu”. In this post, we have discussed the course objectives, course pre-requisites/requirements, why we are learning WordPress, and what the are the learning outcomes of this course.

forward

Ep. 001 – Course Introduction – Learn WordPress in Urdu

Today, we are starting a new course titled “Learn WordPress in Urdu”. This blog post gives an overview of the course and provides information about the contents of the course. This course is prepared using the latest version of WordPress (5.8). Each lecture consists of a written blog post (like this) and a video hosted on Youtube and Facebook pages. The video from Youtube will be embedded in the blog posts as well.

forward
CODOWPPOSTS – Features and HowTo Guide – WordPress Plugin

CODOWPPOSTS is a WordPress plugin to show posts, pages, or custom posts on the frontend in tabular format with client-side filters and pagination. Select post type, add/re-order/delete columns with post attributes e.g. title, excerpt, author, category, or any custom post meta boxes. Define column widths, link permalinks, enable/disable client-side filters for each column. Define number of posts per page (default: 10) with client-side pagination functionality.

forward

WordPress Plugin Development Boilerplate

Another contribution to the open-source community. We have developed and released a boilerplate template to develop a new WordPress plugin using Object Oriented Programming (OOP) approach. If you are a WordPress developer and want to develop a custom WordPress plugin from scratch, then this boilerplate may act as a good starting point for your new WordPress plugin.

forward

WordPress and jQuery. What’s the Future?

WordPress is planning major jQuery changes in version 5.5 and future versions. Since WordPress relies on jQuery which is a popular JavaScript framework, the WordPress team wants to update jQuery to the latest possible version. In the long term, they want to minimize or completely remove the reliance on the jQuery framework as mentioned in this blog post. Following are some short notes about this topic: Currently, WordPress provides jQuery with version 1.12.4 released in 2016. The WordPress team wants to update the jQuery version gradually because many themes and plugins are using an older version of jQuery as a...
forward

Interview Questions for WordPress Developer

I have prepared a list of possible questions which are commonly asked or should be asked from a candidate applying for the position of a WordPress developer. What are WordPress plugins?What are WordPress themes?What are WordPress child themes?What is Gutenberg?How to choose a best WordPress plugin?Can you develop a WordPress plugin from scratch?Can you design a WordPress theme from scratch?Can you customize WordPress plugins developed using OOP concepts?What is the difference between OOP and Structural programming?What are hooks?Can you define a custom hook?What are actions?What are filters?What is the difference between actions and filters?How to extend the existing functionality of...
forward

#01 – Introduction – TypeScript

What is TypeScript? TypeScript is a typed super-set of JavaScript It means that any JavaScript code is a legal TypeScript codeAlso we can write any JavaScript code in a Typescript file (.ts) without any errorIt add rules about how different type of values can be usedIt preserves the run-time behavior of JavaScript code, which means that TypeScript will not throw any "type" errors on run-timeTypeScript is a static type checker for JavaScriptDetecting errors in code without running is known as static checkingDetermining the nature or type of error based on the type of values is known as static type checkingSo...
forward

#00 – Concepts and Notes – JavaScript

Following is a list of core JavaScript concepts: HistoryDeveloped in 1995 by Brendan EichInitially named as LiveScriptAlso known as ECMAScriptJS has no concept of input or outputIt runs in an hosted environment like Node Server or BrowsersOverviewJS is a multi-paradigm, dynamic languageSyntax is similar to Java and C languagesIt supports object oriented approach using objects prototypes instead of classesIt also supports functional programmingTypesNumberStringBooleanSymbolObjectFunctionInner FunctionsArrayDateRegExpNullUndefinedVariablesLetConstVarOperatorsNumbericPlus (+)ComparisonBitwiseControl Structuresif-elsewhile loopdo-while loopfor loopfor-of loopfor-in loopswitch References: https://developer.mozilla.org/en-US/docs/Learnhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript...
forward