How to Search across All Sites in WordPress Multisite Network
Step by step tutorial about creating global search in your Multisite Network.
WordPress Multisite: How to Get all Terms in a One Loop
In this tutorial I am going to talk about how to print all the terms from your multisite network using just one query. It means that we are not going to use swith_to_blog()
solution, because there is some disadvantages to it.
- When you print categories or any other custom taxonomies with the help of
switch_to_blog()
andget_terms()
it will be tough to sort them in a desired way, and usually terms are going to be displayed separated by a site (all terms from Site 1, then all terms from Site 2 etc). - There are going to be a lot of SQL queries – for each loop iteration at least.
How to Send Email with Attachments via PHPMailer in WP
I have a lot of questions from my website visitors about «My Plugins» functionality. One of these questions is about email attachments — because when you buy my plugin, you will receive it via email
How to Turn Off Trackback Spam
I hope you have already configured the spam protection in comments.
Do you still receive spam? Maybe trackback spam?
PageSpeed Insights: Get rid of render-blocking JavaScript and CSS
I think all of you know about Google PageSpeed Insights tool. Please copy your website URL in it and click «Ananalize» just right now
How to Add a Custom Post Status to Quick Edit
I think you can find a lot of good information about status creation in WP. But I didn’t find any notes about how to add a status (custom status, you just created) into inline post edit.