Clean up doc blocks for `class-wp-embed.php`.

See #32444.

Built from https://develop.svn.wordpress.org/trunk@32544


git-svn-id: http://core.svn.wordpress.org/trunk@32514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-05-22 05:15:26 +00:00
parent 94f29f27a1
commit 1fa7958fe8
2 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ class WP_Embed {
* this function removes all existing shortcodes, registers the [embed] shortcode,
* calls {@link do_shortcode()}, and then re-registers the old shortcodes.
*
* @uses $shortcode_tags
* @global array $shortcode_tags
*
* @param string $content Content to parse
* @return string Content with shortcode parsed
@ -92,7 +92,7 @@ class WP_Embed {
*
* @param string $id An internal ID/name for the handler. Needs to be unique.
* @param string $regex The regex that will be used to see if this handler should be used for a URL.
* @param callback $callback The callback function that will be called if the regex is matched.
* @param callable $callback The callback function that will be called if the regex is matched.
* @param int $priority Optional. Used to specify the order in which the registered handlers will be tested (default: 10). Lower numbers correspond with earlier testing, and handlers with the same priority are tested in the order in which they were added to the action.
*/
public function register_handler( $id, $regex, $callback, $priority = 10 ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32543';
$wp_version = '4.3-alpha-32544';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.