Twenty Ten: Docs: Fix typo in `twentyten_custom_excerpt_more()` DocBlock.
Update `@return` tag for `twentyten_auto_excerpt_more()` for consistency with Twenty Eleven. See #51477, #50768. Built from https://develop.svn.wordpress.org/trunk@49106 git-svn-id: http://core.svn.wordpress.org/trunk@48868 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
37c3854083
commit
5f2f199a75
|
@ -341,7 +341,7 @@ endif;
|
||||||
* @since Twenty Ten 1.0
|
* @since Twenty Ten 1.0
|
||||||
*
|
*
|
||||||
* @param string $more The Read More text.
|
* @param string $more The Read More text.
|
||||||
* @return string An ellipsis.
|
* @return string The filtered Read More text.
|
||||||
*/
|
*/
|
||||||
function twentyten_auto_excerpt_more( $more ) {
|
function twentyten_auto_excerpt_more( $more ) {
|
||||||
if ( ! is_admin() ) {
|
if ( ! is_admin() ) {
|
||||||
|
@ -359,7 +359,7 @@ add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
|
||||||
*
|
*
|
||||||
* @since Twenty Ten 1.0
|
* @since Twenty Ten 1.0
|
||||||
*
|
*
|
||||||
* @param string $output The "Coninue Reading" link.
|
* @param string $output The "Continue Reading" link.
|
||||||
* @return string Excerpt with a pretty "Continue Reading" link.
|
* @return string Excerpt with a pretty "Continue Reading" link.
|
||||||
*/
|
*/
|
||||||
function twentyten_custom_excerpt_more( $output ) {
|
function twentyten_custom_excerpt_more( $output ) {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.6-alpha-49105';
|
$wp_version = '5.6-alpha-49106';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue