What is the correct technology for a specific job before getting your hands dirty with code. It depends on multiple factors and you should get the checks right, before going on wrong path that will waste time, energy, reputation and more. Strengths and Weaknesses of the different technologies Professional Individuals tend to over-value the technologies…
Tag: WordPress
WordPress Application Builder
WordPress powers most of the Internet because of ease of use, network effect, branding and more so I’ve created a Simple Application Builder using this platform as the backbone. It is proof of concept, so don’t expect a lot. It could be found here: https://tomavelev.com/wp_app_builder/ You search for the site you wish to turn into…
Start Programming the Mind with WordPress
WordPress is a content management system used all around the Internet With the unconscious or the unconscious purpose of programming the mind. Professional individuals and non-technical users adopt it. It allows them to get things done. The purposes could go – from simple web site or blog, online shop/marketplace, to newsletter and media platforms, email…
How to WordPress Pages JSON API & Demo: Flutter Web
Let me show you the WordPress Pages JSON API and how to display them in a Simple Flutter Web App. The Data Model I’ll first start by explaining the Data Model. You could open the pages from URL template like this: https://<wp>/wp-json/wp/v2/pages. The JSON Model is as follows: id: Integer title: Object with field “rendered”…
How to read WordPress Products JSON API and show them with Flutter Web
The WordPress Products API returns JSON that contains all data. In the result are included the tags, the categories, the images and all fields. You could display the product info with one API call. The URL is formed like this: https://<wp>/wp-json/wc/store/products. The fields here are: id: Integer name: String description: String (HTML) – the explanation…
How to read WordPress Users and show Them with Flutter Web
The Content Management Platform – WordPress – also has User System inside. User Centered are almost all the Applications around the Internet. WordPress offers Administrative Visual Interface, Roles Editing and many more things integrated or offered as a plugin. In this article I’m gonna explain how to read WordPress Users from the WP JSON Rest…
How to read WordPress Posts & show Them with Flutter Web
In this article I’m gonna continue the tutorial of reading the WP JSON API to how you how to read the WordPress Posts and display them in Flutter Web Application. The Information is located on the URL: https://<wp>/wp-json/wp/v2/posts. It has the following JSON Data Model: The important fields of this complex WordPress Posts array/object –…
How to WordPress JSON Media & show it with Flutter Web
I’ll continue my previous articles about Consuming WordPress JSON API, Tags and Categories by showing you how to Grab the Media (probably mostly Images) from the JSON API of a WordPress Web Site. The Endpoint for Images is: https://<wp>/wp-json/wp/v2/media?[offset=<0,10,20>]. It has the following – more complex Data Model: Important and probably most used fields of…
How to grab WordPress Categories and show them in Flutter Web
I’ll continue my previous post about Consuming WordPress JSON API and Tags by showing you how to Grab the Categories and their related Posts or Products from the JSON API of a WordPress Web Site. Load Post Categories The Post Categories list endpoint is located under the address https://<wp>/wp-json/wp/v2/categories[?parent=<id>]. It has the following JSON Model:…
How to grab WordPress Tags from JSON API and show them with Flutter Web
I’ll continue my previous post about Consuming WordPress JSON API by showing you how to Grab the Tags and their related Posts or Products from the JSON API of a WordPress Web Site. If you have a WordPress Site, you probably also have available several REST endpoints described in technical detail in the WordPress.org documentation….