Adding Author Filter to CPTs
This isn’t a WordPress problem, it’s a programming logic mistake in this if statement: if( ‘booking’ || ‘ticket’ !== $post_type ) { This code is the same as this: if( ( ‘booking’ != false ) || ( ‘ticket’ !== $post_type ) ) { Which in plain language is: If “booking” is a truthy value, or … Read more