Advertisement
Guest User

Untitled

a guest
Sep 15th, 2020 (edited)
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'action_function_name_11' );
  2. function action_function_name_11( $query ) {
  3.     $post_type = $query->query['post_type'] ?? 'undefined';
  4.  
  5.     if($post_type === 'post') {
  6.  
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement