Robert Szopa is an AI architect, business systems developer, and creative thinker with a background in philosophy and cognitive science.
Business process automation solutions
Artificial intelligence solutions for business
Custom-built sites with modern tech stack
Reusable code snippets and utility functions
Pre-built UI components and templates
Complete website themes and solutions
Articles on business, tech, and growth
Courses and learning resources
Step-by-step guides and tutorials
Curated resources and services
Building in public with documented journey
function custom_post_permalink_base() {
// Check if the current request is for a singular post
if ( is_singular( 'post' ) ) {
// Add a rewrite rule to handle /blog/ as the base
add_rewrite_rule(
'^blog/([^/]+)/?',
'index.php?name=$matches[1]',
'top'
);
}
}
add_action( 'init', 'custom_post_permalink_base' );