Tag: WordPress
WordPress Plugin Conflicts and Compatibility
One of the reasons WordPress is so successful, and used so widely, is because it can do almost anything you need, particularly through the use of Plugins. Plugins add new features to a website by extending the core functionality of WordPress. However, not all plugins are created equally, and it’s impossible for even the best…
WordPress Gutenberg Review
I think it’s important to know the history of my experience with WordPress in order to understand the basis for opinions, so this is where I will begin my WordPress Gutenberg review. I had my first real introduction to WordPress in 2012 when I made a site for a client that needed an easy to…
Using a PHP Framework or Library in WordPress Plugins and Themes
Anyone who has spent a fair amount of time creating WordPress Plugins or Themes has likely also come across the need to package a PHP framework or library inside a plugin or theme. On the surface this is a fairly routine thing to do – simply copy the file into your plugin or theme, or…
Disable new user invitation for WordPress multisite
For the purposes of this post let’s assume that you’ve setup an instance of WordPress Multisite, there are a handful of sites (termed blogs), you’re the super admin, and there are different administrators per site. What if one of the site administrators wants to add a new user to their site? Easy enough, they can…
WordPress Custom Post Type Pagination
Looking around the internet it’s easy to find several examples of how you can create WordPress custom post type pagination links using multiple different methods. The problem is many of them require overwriting or modifying the $wp_query global variable, which can break functionality with plugins, themes, or theme widgets. It’s almost always better practice to…