Changeset 37539
- Timestamp:
- 05/23/2016 06:53:05 PM (8 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r37492 r37539 63 63 * SQL WHERE clause. 64 64 * 65 * Stored after the 'comments_clauses'filter is run on the compiled WHERE sub-clauses.65 * Stored after the {@see 'comments_clauses'} filter is run on the compiled WHERE sub-clauses. 66 66 * 67 67 * @since 4.4.2 -
trunk/src/wp-includes/class-wp-customize-manager.php
r37527 r37539 906 906 * @since 3.4.0 907 907 * 908 * @param mixed $return Value passed through for wp_die_handlerfilter.909 * @return mixed Value passed through for wp_die_handlerfilter.908 * @param mixed $return Value passed through for {@see 'wp_die_handler'} filter. 909 * @return mixed Value passed through for {@see 'wp_die_handler'} filter. 910 910 */ 911 911 public function remove_preview_signature( $return = null ) { -
trunk/src/wp-includes/class-wp-customize-widgets.php
r37491 r37539 350 350 * Ensures widgets are available for all types of previews. 351 351 * 352 * When in preview, hook to 'customize_register'for settings after WordPress is loaded352 * When in preview, hook to {@see 'customize_register'} for settings after WordPress is loaded 353 353 * so that all filters have been initialized (e.g. Widget Visibility). 354 354 * … … 557 557 * 558 558 * This method will return all Core widgets as being not wide, but this can be 559 * overridden with the is_wide_widget_in_customizerfilter.559 * overridden with the {@see 'is_wide_widget_in_customizer'} filter. 560 560 * 561 561 * @since 3.9.0 … … 1990 1990 1991 1991 /** 1992 * @since 3.9.0 1993 * @deprecated 4.2.0 Deprecated in favor of customize_dynamic_setting_args filter. 1992 * {@internal Missing Summary} 1993 * 1994 * See the {@see 'customize_dynamic_setting_args'} filter. 1995 * 1996 * @since 3.9.0 1997 * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. 1994 1998 */ 1995 1999 public function setup_widget_addition_previews() { … … 1998 2002 1999 2003 /** 2000 * @since 3.9.0 2001 * @deprecated 4.2.0 Deprecated in favor of customize_dynamic_setting_args filter. 2004 * {@internal Missing Summary} 2005 * 2006 * See the {@see 'customize_dynamic_setting_args'} filter. 2007 * 2008 * @since 3.9.0 2009 * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. 2002 2010 */ 2003 2011 public function prepreview_added_sidebars_widgets() { … … 2006 2014 2007 2015 /** 2008 * @since 3.9.0 2009 * @deprecated 4.2.0 Deprecated in favor of customize_dynamic_setting_args filter. 2016 * {@internal Missing Summary} 2017 * 2018 * See the {@see 'customize_dynamic_setting_args'} filter. 2019 * 2020 * @since 3.9.0 2021 * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. 2010 2022 */ 2011 2023 public function prepreview_added_widget_instance() { … … 2014 2026 2015 2027 /** 2016 * @since 3.9.0 2017 * @deprecated 4.2.0 Deprecated in favor of customize_dynamic_setting_args filter. 2028 * {@internal Missing Summary} 2029 * 2030 * See the {@see 'customize_dynamic_setting_args'} filter. 2031 * 2032 * @since 3.9.0 2033 * @deprecated 4.2.0 Deprecated in favor of the {@see 'customize_dynamic_setting_args'} filter. 2018 2034 */ 2019 2035 public function remove_prepreview_filters() { -
trunk/src/wp-includes/class-wp-embed.php
r37492 r37539 17 17 /** 18 18 * When a URL cannot be embedded, return false instead of returning a link 19 * or the URL. Bypasses the 'embed_maybe_make_link' filter. 19 * or the URL. 20 * 21 * Bypasses the {@see 'embed_maybe_make_link'} filter. 22 * 23 * @access public 24 * @var bool 20 25 */ 21 26 public $return_false_on_fail = false; -
trunk/src/wp-includes/class-wp-metadata-lazyloader.php
r36899 r37539 161 161 * @since 4.5.0 162 162 * 163 * @param mixed $check The `$check` param passed from the 'get_comment_metadata'hook.163 * @param mixed $check The `$check` param passed from the {@see 'get_comment_metadata'} hook. 164 164 * @return mixed The original value of `$check`, so as not to short-circuit `get_comment_metadata()`. 165 165 */ -
trunk/src/wp-includes/class-wp-rewrite.php
r37492 r37539 1253 1253 * Constructs rewrite matches and queries from permalink structure. 1254 1254 * 1255 * Runs the action 'generate_rewrite_rules'with the parameter that is an1255 * Runs the action {@see 'generate_rewrite_rules'} with the parameter that is an 1256 1256 * reference to the current WP_Rewrite instance to further manipulate the 1257 * permalink structures and rewrite rules. Runs the 'rewrite_rules_array'1257 * permalink structures and rewrite rules. Runs the {@see 'rewrite_rules_array'} 1258 1258 * filter on the full rewrite rule array. 1259 1259 * 1260 1260 * There are two ways to manipulate the rewrite rules, one by hooking into 1261 * the 'generate_rewrite_rules'action and gaining full control of the1261 * the {@see 'generate_rewrite_rules'} action and gaining full control of the 1262 1262 * object or just manipulating the rewrite rule array before it is passed 1263 1263 * from the function. … … 1873 1873 * WP_Rewrite::init() after the option is updated. 1874 1874 * 1875 * Fires the 'permalink_structure_changed'action once the init call has1875 * Fires the {@see 'permalink_structure_changed'} action once the init call has 1876 1876 * processed passing the old and new values 1877 1877 * -
trunk/src/wp-includes/class-wp-theme.php
r37492 r37539 171 171 * Flag for whether the themes cache bucket should be persistently cached. 172 172 * 173 * Default is false. Can be set with the wp_cache_themes_persistentlyfilter.173 * Default is false. Can be set with the {@see 'wp_cache_themes_persistently'} filter. 174 174 * 175 175 * @static … … 921 921 * This is typically the absolute URL to wp-content/themes. This forms the basis 922 922 * for all other URLs returned by WP_Theme, so we pass it to the public function 923 * get_theme_root_uri() and allow it to run the theme_root_urifilter.923 * get_theme_root_uri() and allow it to run the {@see 'theme_root_uri'} filter. 924 924 * 925 925 * @since 3.4.0 -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r37492 r37539 15 15 * 16 16 * As of WordPress 3.5.0, XML-RPC is enabled by default. It can be disabled 17 * via the xmlrpc_enabledfilter found in wp_xmlrpc_server::login().17 * via the {@see 'xmlrpc_enabled'} filter found in wp_xmlrpc_server::login(). 18 18 * 19 19 * @package WordPress … … 55 55 56 56 /** 57 * Register all of the XMLRPC methods that XMLRPC server understands.57 * Registers all of the XMLRPC methods that XMLRPC server understands. 58 58 * 59 59 * Sets up server and method property. Passes XMLRPC 60 * methods through the 'xmlrpc_methods'filter to allow plugins to extend61 * or replace XML RPC methods.60 * methods through the {@see 'xmlrpc_methods'} filter to allow plugins to extend 61 * or replace XML-RPC methods. 62 62 * 63 63 * @since 1.5.0 -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php
r37518 r37539 132 132 /** 133 133 * Status for calling the update method, used in customize_save_response filter. 134 * 135 * See {@see 'customize_save_response'}. 134 136 * 135 137 * When status is inserted, the placeholder post ID is stored in $previous_post_id. … … 659 661 660 662 /** 661 * Create /updatethe nav_menu_item post for this setting.663 * Creates/updates the nav_menu_item post for this setting. 662 664 * 663 665 * Any created menu items will have their assigned post IDs exported to the client 664 * via the customize_save_response filter. Likewise, any errors will be exported665 * to the client via the customize_save_response() filter.666 * via the {@see 'customize_save_response'} filter. Likewise, any errors will be 667 * exported to the client via the customize_save_response() filter. 666 668 * 667 669 * To delete a menu, the client can send false as the value. -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-setting.php
r37518 r37539 75 75 * Previous (placeholder) term ID used before creating a new menu. 76 76 * 77 * This value will be exported to JS via the customize_save_responsefilter77 * This value will be exported to JS via the {@see 'customize_save_response'} filter 78 78 * so that JavaScript can update the settings to refer to the newly-assigned 79 79 * term ID. This value is always negative to indicate it does not refer to … … 101 101 * Status for calling the update method, used in customize_save_response filter. 102 102 * 103 * When status is inserted, the placeholder term ID is stored in $previous_term_id. 104 * When status is error, the error is stored in $update_error. 103 * See {@see 'customize_save_response'}. 104 * 105 * When status is inserted, the placeholder term ID is stored in `$previous_term_id`. 106 * When status is error, the error is stored in `$update_error`. 105 107 * 106 108 * @since 4.3.0 … … 448 450 * Storage for data to be sent back to client in customize_save_response filter. 449 451 * 452 * See {@see 'customize_save_response'}. 453 * 450 454 * @access protected 451 455 * @since 4.3.0 … … 460 464 * 461 465 * Any created menus will have their assigned term IDs exported to the client 462 * via the customize_save_responsefilter. Likewise, any errors will be exported466 * via the {@see 'customize_save_response'} filter. Likewise, any errors will be exported 463 467 * to the client via the customize_save_response() filter. 464 468 *
Note: See TracChangeset
for help on using the changeset viewer.