Category Archives: Programming
TutorialsTeacher – Learn ASP.NET MVC 5
C# / MVVM / learning resources
Visual Studio 2022 – How to
.Net Windows / Linux / Visual code and development
WordPress – Crud (Create / Read/ Update / Delete) methodologies
Python how and why
Display content inside Iframe – SameSite
wordpress plugins
Cloud Development (Repl, CodeSandbox )
Centralized post for WordPress development
Chrome Extension development
Open source js Video Players
Use Notepad++ as IDE for Java
Scalismo – Change faces and morphology
Growthparty Developer / Blogger / Creator / Marketer tools
Gitium – Plugin that pushes changes from wordpress to Git repo
Programming for Kids (?)
How to create post types with specific fields
Install Tensorflow on raspberry pi and classify Images
Python learning resources
What programming language to learn?
WordPress / Git / Bitbucket
How to secure your wordpress site
WooCommerce – A great plugin that turns your wordpress site to Virtual Shop
Elementor – Page Builder For WordPress
How to limit post and post-types viewing and editing to post creator only

Read the following post in order to be able to limit editing and viewing post or post-types to post creator only:
02. This is the plugin:
<?php
/*
Plugin Name: Simplify Post Edit List
Description: Show only the author's posts in the edit list
Version: 0.1
License: GPL
Author: Sarah Gooding
Author URI: http://untame.net
*/
function mypo_parse_query_useronly( $wp_query ) {
if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) {
if ( !current_user_can( 'update_core' ) ) {
global $current_user;
$wp_query->set( 'author', $current_user->id );
}
}
}
add_filter('parse_query', 'mypo_parse_query_useronly' );
03. The line in red can be modified as follows:
a. Limit to Edit: strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false b. Limit to All admin area: strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin' ) !== false c. Limit to All admin area: strpos( $_SERVER[ 'REQUEST_URI' ], '/[Post-Type here]' ) !== false d. Combination of IF: if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin' ) !== false || strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false || strpos( $_SERVER[ 'REQUEST_URI' ], '/[post-type]' ) !== false )
React Native A FRAMEWORK FOR BUILDING NATIVE APPS USING REACT

React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and React. The focus of React Native is on developer efficiency across all the platforms you care about — learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.
https://facebook.github.io/react-native/
Site Ground – WordPress with advanced topics
Create Post types and content templates with Toolset of WPML

Link to User Guides, Link to Videos
- Post Types
- Post Fields (p2.6). Under post fields->Edit the Post field->Under “Where to include those fields” assign to appropriate post types.
- Content Templates (includes video)
- Views (includes video)
- Archive for custom post type (includes video)
- Building a Custom Parametric Search with Views
- Post Form
- Access Control