WPBrigade Blog

  • How to implement SEO with MaxCDN

    Last updated on May 1st, 2026 by Tan Nguyen

    How to implement SEO with MaxCDN

    I have heard of the term CDN or content delivery network for a long time now and have seen many websites using it, however, I thought that it was complicated to set up after reading several articles online. So I didn’t use any CDN solution up until the beginning of last month. Sounds super crazy, isn’t it? I mean you don’t necessarily need CDN to speed up your WordPress or website. As long as its site is running on some of the best hosting company then you’re good. But it wouldn’t hurt to do some optimizations right? So I finally…

    Continue Reading

  • How to Start Your Own Hosting Business with WordPress

    Last updated on May 1st, 2026 by Tan Nguyen

    How to Start Your Own Hosting Business with WordPress

    Who doesn’t want to make a lot of money? The way that I’m doing it is through online blogging, I would join the affiliate program from many trusted services, do website installation, and many more.

    Continue Reading

  • Avoid spammy links in WordPress Posts with LinkPatrol

    Last updated on May 1st, 2026 by Tan Nguyen

    Avoid spammy links in WordPress Posts with LinkPatrol

    I’m a big believer of Content Is King. Whenever I started a new blog the very first thing or goal is to write great contents, focus on the headings, and display images that capture readers attention. Though these are BIG factors in search ranking, sometimes we make small little mistakes that could destroy everything that we have built so far. For example, linking to a website that later on become a 404 page or turn into a bad site i.e pornographic. If you barely know about this, it’s not too late to fix it. In this article, I will show…

    Continue Reading

  • How to check a specific plugin is activated or not ?

    Last updated on May 1st, 2026 by Tan Nguyen

    How to check a specific plugin is activated or not ?

    While working on the EDD (Easy Digital Downloads) add-on of Analytify, I was looking for a way to check if the Easy Digital Downloads plugin is already activated or not. So, a message should appear to our users that “They should activate Easy Digital Downloads to make the Analytify for EDD work properly. “ Almost every plugin has a class name, we can use the PHP function ‘class_exists‘ to know if it exists or not. Following is the code which can be used to check a plugin is activate or not. add_action( ‘admin_notices’, array( &$this, ‘analytify_edd_plugin_notices’ )); public function analytify_edd_plugin_notices()…

    Continue Reading