Changeset 26981
- Timestamp:
- 01/18/2014 05:05:38 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r26876 r26981 1231 1231 * @since 3.0.0 1232 1232 * 1233 * @param object $menus_meta_box_object A nav menu meta box object, such as Page, Post, Category, Tag, etc. 1233 * @param object $menus_meta_box_object A nav menu meta box object, such as Page, 1234 * Post, Category, Tag, etc. 1234 1235 */ 1235 1236 $item = apply_filters( 'nav_menu_meta_box_object', $menus_meta_box_object ); … … 1831 1832 * @since 3.3.0 1832 1833 * 1833 * @param int $interval The interval in seconds the post lock duration should last, plus 5 seconds. Default 150. 1834 * @param int $interval The interval in seconds the post lock duration 1835 * should last, plus 5 seconds. Default 150. 1834 1836 */ 1835 1837 $new_lock = ( time() - apply_filters( 'wp_check_post_lock_window', 150 ) + 5 ) . ':' . $active_lock[1]; … … 1905 1907 1906 1908 /** 1907 * Filter the arguments passed to WP_Query during an AJAX call for querying attachments. 1909 * Filter the arguments passed to WP_Query during an AJAX 1910 * call for querying attachments. 1908 1911 * 1909 1912 * @since 3.7.0 1910 1913 * 1911 * @param array $query An array of query variables. @see WP_Query::parse_query() 1914 * @see WP_Query::parse_query() 1915 * 1916 * @param array $query An array of query variables. 1912 1917 */ 1913 1918 $query = apply_filters( 'ajax_query_attachments_args', $query );
Note: See TracChangeset
for help on using the changeset viewer.