How to create archive pages for metadata query generated posts (so without taxonomy)?
A fairly simple way to do this is to create a new page with the slug likedby, then add some rewrite rules to handle the extra parameters. First, the query var that holds the requested username: function wpd_likedby_query_var( $query_vars ) { $query_vars[] = ‘likeduser’; return $query_vars; } add_filter( ‘query_vars’, ‘wpd_likedby_query_var’ ); Then a couple of … Read more