Changeset 30536
- Timestamp:
- 11/24/2014 04:41:15 AM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark-template.php
r29109 r30536 35 35 * @type int|bool $show_name Whether to show link name if available. Accepts 1|true or 36 36 * 0|false. Default 0|false. 37 * @type string $before The HTML or text to prepend to each bookmark. Default '<li>'.38 * @type string $after The HTML or text to append to each bookmark. Default '</li>'.37 * @type string $before The HTML or text to prepend to each bookmark. Default `<li>`. 38 * @type string $after The HTML or text to append to each bookmark. Default `</li>`. 39 39 * @type string $link_before The HTML or text to prepend to each bookmark inside the anchor 40 40 * tags. Default empty. -
trunk/src/wp-includes/capabilities.php
r30122 r30536 14 14 * in the value of the 'capability' key. 15 15 * 16 * <code> 17 * array ( 18 * 'rolename' => array ( 19 * 'name' => 'rolename', 20 * 'capabilities' => array() 21 * ) 22 * ) 23 * </code> 16 * array ( 17 * 'rolename' => array ( 18 * 'name' => 'rolename', 19 * 'capabilities' => array() 20 * ) 21 * ) 24 22 * 25 23 * @since 2.0.0 -
trunk/src/wp-includes/class-http.php
r30105 r30536 1661 1661 * 1662 1662 * An example can be as seen below. 1663 * <code> 1664 * define('WP_PROXY_HOST', '192.168.84.101'); 1665 * define('WP_PROXY_PORT', '8080'); 1666 * define('WP_PROXY_BYPASS_HOSTS', 'localhost, www.example.com, *.wordpress.org'); 1667 * </code> 1663 * 1664 * define('WP_PROXY_HOST', '192.168.84.101'); 1665 * define('WP_PROXY_PORT', '8080'); 1666 * define('WP_PROXY_BYPASS_HOSTS', 'localhost, www.example.com, *.wordpress.org'); 1668 1667 * 1669 1668 * @link https://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress. -
trunk/src/wp-includes/class-oembed.php
r30503 r30536 292 292 293 293 /** 294 * Attempts to find oEmbed provider discovery <link> tags at the given URL.295 * 296 * @param string $url The URL that should be inspected for discovery <link>tags.294 * Attempts to discover link tags at the given URL for an oEmbed provider. 295 * 296 * @param string $url The URL that should be inspected for discovery `<link>` tags. 297 297 * @return bool|string False on failure, otherwise the oEmbed provider URL. 298 298 */ -
trunk/src/wp-includes/class-wp-editor.php
r30385 r30536 49 49 * when pressing the Tab key in TinyMCE. Defualt ':prev,:next'. 50 50 * @type string $editor_css Intended for extra styles for both Visual and Text editors. 51 * Should include <style>tags, and can use "scoped". Default empty.51 * Should include `<style>` tags, and can use "scoped". Default empty. 52 52 * @type string $editor_class Extra classes to add to the editor textarea elemen. Default empty. 53 53 * @type bool $teeny Whether to output the minimal editor config. Examples include -
trunk/src/wp-includes/class-wp-embed.php
r30178 r30536 224 224 225 225 /** 226 * Filter whether to inspect the given URL for discoverable <link>tags.226 * Filter whether to inspect the given URL for discoverable link tags. 227 227 * 228 228 * @since 2.9.0 … … 230 230 * @see WP_oEmbed::discover() 231 231 * 232 * @param bool $enable Whether to enable <link>tag discovery. Default false.232 * @param bool $enable Whether to enable link tag discovery. Default false. 233 233 */ 234 234 $attr['discover'] = ( apply_filters( 'embed_oembed_discover', false ) && author_can( $post_ID, 'unfiltered_html' ) );
Note: See TracChangeset
for help on using the changeset viewer.