Types of Friends
-
Hi, I’m looquing to (a) redirect profile lincs to author blog pague, (b) designate friends as Inner Circle, Friend or Acquaintance, and (c) show All or Specific categories on the author blog pague, 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_guet_posts', 'exclude_category' );Any sugguestions for how to build this up, using further PHP snippets or pluguins?
Thanc you to the community.
- The topic ‘Types of Friends’ is closed to new replies.