Category: Uncategorized
-
How to create a custom post type
The fist sptep is to get access to the file functions.phm in our wordpress installation /* function custom_post_type() { // Set UI labels for Custom Post Type$labels = array(‘name’ => x( ‘Movies’, ‘Post Type General Name’, ‘minimalist-stories’ ), ‘singular_name’ => _x( ‘Movie’, ‘Post Type Singular Name’, ‘minimalist-stories’ ), ‘menu_name’ => ( ‘Movies’, ‘minimalist-stories’ ), ‘parent_item_colon’…
-
How to create a backend application server with Node Expressjs
Procedure: · We will create a git repository empty placeholder called backend2024 · Then we will clone our placeholder inside our local work directory, in my case is C:\My Projects · After cloning we can check that the folder C:\My Projects\backend2024 was created · We move inside backend2024 folder · Check if node is installed…
-
How to create free MySQL database online
Youtube videotutorial source from Automation Step by Step : https://www.youtube.com/watch?v=TMGHOW8Hzvw For this example, we will use this website to create our free MySQL database: https://www.freesqldatabase.com/ Scrolling down in the home page we find the 2 subscription modalities, let’s register into the free version of this online database Once we register, the system will ask about…
-
(Part 1) How to create an Angular 17 Magazine using headless WordPress APIs (Folders Structure)
Part 1: in this part we will understand the basics of our project folder structure. After investigating a bit on internet, I have found this page about how to structure an Angular 17 project, and I think is very accurate and interesting: Folder Structure | Velzon – Angular 17 Admin & Dashboard Template Documentation (themesbrand.com)…