Types of Friends
-
Hi, I’m looking to (a) redirect profile links to author blog page, (b) designate friends as Inner Circle, Friend or Acquaintance, and (c) show All or Specific categories on the author blog page, depending on friend “type.”
So far, I have PHP for hiding specific categories:
function exclude_category( $query ) { if ( $query->is_author() && $query->is_main_query() ) { $query->set( 'cat', -42' ); } } add_action( 'pre_get_posts', 'exclude_category' );
Any suggestions for how to build this up, using further PHP snippets or plugins?
Thank you to the community.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.