Category Archives: WordPress

WP ROcket Plugin, WP rocket is a must have WordPress cache plugin

WP Rocket is a must-have WordPress cache plugin

I recently changed the default theme of my Personal Site, leaving the Genesis Framework behind and put on a new minimal WordPress theme called SORBET. I fell in love with it while browsing through the demo version. The idea of it being super fast got to me and I immediately customize a few things and apply it live right away. The loading result didn’t disappointed me at all, however, it couldn’t beat the speed of my previous Genesis child theme, which means there are room for improvement.

Continue reading

avoid spammy link in WordPres posts with LinkPatrol

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 you some great ways to analyze all existence external links inside your WordPress posts.

Continue reading

WordPress, WordPress development

Make Author.php Include Custom Post Types

I was going through a strange issue where Author page was not showing the posts which belongs to Custom Post Types. After Googling, I found this article which shows how to include Custom Post Types for archives.php

I got inspiration from above mentioned article snippet and wrote the following snippet to modify Author.php page to include Custom Post Types

function wpbrigade_author_custom_post_types( $query ) {
  if( is_author() && empty( $query->query_vars['suppress_filters'] ) ) {
    $query->set( 'post_type', array(
     'post', 'my-custom-post-type-here'
		));
	  return $query;
	}
}
add_filter( 'pre_get_posts', 'wpbrigade_author_custom_post_types' );