pre_get_posts
Fires after the query variable object is created, but before the actual query is run.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'add_posts_to_loop' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'pre_get_posts', $array );
- The following example is for adding a hook callback.
- // define the pre_get_posts callback
- function action_pre_get_posts( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'pre_get_posts', 'action_pre_get_posts', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'pre_get_posts', 'action_pre_get_posts', 10, 1 );
Defined (5)
The action is defined in the following location(s).
- /modules/custom-post-types/comics.php
- add_action( 'pre_get_posts', array( $this, 'add_posts_to_loop' ) );
- add_action( 'pre_get_posts', array( $this, 'include_in_feeds' ) );
- /modules/infinite-scroll/infinity.php
- add_action( 'pre_get_posts', array( $this, 'posts_per_page_query' ) );
- /modules/theme-tools/featured-content.php
- add_action( 'pre_get_posts', array( __CLASS__, 'pre_get_posts' ) );
- /modules/videopress/editor-media-view.php
- add_action( 'pre_get_posts', 'videopress_media_list_table_query' );