Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_{$post->post_type}_revisions_to_keep

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
612       *
613       *  - `wp_post_revisions_to_keep`
614       *  - `wp_page_revisions_to_keep`
615       *
616       * @since 5.8.0
617       *
618       * @param int     $num  Number of revisions to store.
619       * @param WP_Post $post Post object.
620       */
621      $num = apply_filters( "wp_{$post->post_type}_revisions_to_keep", $num, $post );
622
623      return (int) $num;
624 }
625
626 /**
627  * Sets up the post object for preview based on the post autosave.
628  *
629  * @since 2.7.0
630  * @access private