diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-includes/feed.php --- a/wp/wp-includes/feed.php Thu Sep 29 08:06:27 2022 +0200 +++ b/wp/wp-includes/feed.php Fri Sep 05 18:40:08 2025 +0200 @@ -11,7 +11,7 @@ */ /** - * RSS container for the bloginfo function. + * Retrieves RSS container for the bloginfo function. * * You can retrieve anything that you can using the get_bloginfo() function. * Everything will be stripped of tags and characters converted, when the values @@ -41,7 +41,7 @@ } /** - * Display RSS container for the bloginfo function. + * Displays RSS container for the bloginfo function. * * You can retrieve anything that you can using the get_bloginfo() function. * Everything will be stripped of tags and characters converted, when the values @@ -68,7 +68,7 @@ } /** - * Retrieve the default feed. + * Retrieves the default feed. * * The default feed is 'rss2', unless a plugin changes it through the * {@see 'default_feed'} filter. @@ -92,12 +92,12 @@ } /** - * Retrieve the blog title for the feed title. + * Retrieves the blog title for the feed title. * * @since 2.2.0 * @since 4.4.0 The optional `$sep` parameter was deprecated and renamed to `$deprecated`. * - * @param string $deprecated Unused.. + * @param string $deprecated Unused. * @return string The document title. */ function get_wp_title_rss( $deprecated = '–' ) { @@ -119,7 +119,7 @@ } /** - * Display the blog title for display of the feed title. + * Displays the blog title for display of the feed title. * * @since 2.2.0 * @since 4.4.0 The optional `$sep` parameter was deprecated and renamed to `$deprecated`. @@ -147,14 +147,16 @@ } /** - * Retrieve the current post title for the feed. + * Retrieves the current post title for the feed. * * @since 2.0.0 + * @since 6.6.0 Added the `$post` parameter. * + * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. * @return string Current post title. */ -function get_the_title_rss() { - $title = get_the_title(); +function get_the_title_rss( $post = 0 ) { + $title = get_the_title( $post ); /** * Filters the post title for use in a feed. @@ -167,7 +169,7 @@ } /** - * Display the post title in the feed. + * Displays the post title in the feed. * * @since 0.71 */ @@ -176,7 +178,7 @@ } /** - * Retrieve the post content for feeds. + * Retrieves the post content for feeds. * * @since 2.9.0 * @@ -207,7 +209,7 @@ } /** - * Display the post content for feeds. + * Displays the post content for feeds. * * @since 2.9.0 * @@ -218,7 +220,7 @@ } /** - * Display the post excerpt for the feed. + * Displays the post excerpt for the feed. * * @since 0.71 */ @@ -235,7 +237,7 @@ } /** - * Display the permalink to the post for use in feeds. + * Displays the permalink to the post for use in feeds. * * @since 2.3.0 */ @@ -251,7 +253,7 @@ } /** - * Outputs the link to the comments for the current post in an xml safe way + * Outputs the link to the comments for the current post in an XML safe way. * * @since 3.0.0 */ @@ -268,7 +270,7 @@ } /** - * Display the feed GUID for the current comment. + * Displays the feed GUID for the current comment. * * @since 2.5.0 * @@ -279,7 +281,7 @@ } /** - * Retrieve the feed GUID for the current comment. + * Retrieves the feed GUID for the current comment. * * @since 2.5.0 * @@ -297,7 +299,7 @@ } /** - * Display the link to the comments. + * Displays the link to the comments. * * @since 1.5.0 * @since 4.4.0 Introduced the `$comment` argument. @@ -318,11 +320,11 @@ } /** - * Retrieve the current comment author for use in the feeds. + * Retrieves the current comment author for use in the feeds. * * @since 2.0.0 * - * @return string Comment Author + * @return string Comment Author. */ function get_comment_author_rss() { /** @@ -338,7 +340,7 @@ } /** - * Display the current comment author in the feed. + * Displays the current comment author in the feed. * * @since 1.0.0 */ @@ -347,7 +349,7 @@ } /** - * Display the current comment content for use in the feeds. + * Displays the current comment content for use in the feeds. * * @since 1.0.0 */ @@ -365,7 +367,7 @@ } /** - * Retrieve all of the post categories, formatted for use in feeds. + * Retrieves all of the post categories, formatted for use in feeds. * * All of the categories for the current post in the feed loop, will be * retrieved and have feed markup added, so that they can easily be added to the @@ -427,7 +429,7 @@ } /** - * Display the post categories in the feed. + * Displays the post categories in the feed. * * @since 0.71 * @@ -440,7 +442,7 @@ } /** - * Display the HTML type based on the blog setting. + * Displays the HTML type based on the blog setting. * * The two possible values are either 'xhtml' or 'html'. * @@ -448,7 +450,7 @@ */ function html_type_rss() { $type = get_bloginfo( 'html_type' ); - if ( strpos( $type, 'xhtml' ) !== false ) { + if ( str_contains( $type, 'xhtml' ) ) { $type = 'xhtml'; } else { $type = 'html'; @@ -457,7 +459,7 @@ } /** - * Display the rss enclosure for the current post. + * Displays the rss enclosure for the current post. * * Uses the global $post to check whether the post requires a password and if * the user has the password for the post. If not then it will return before @@ -498,7 +500,7 @@ } /** - * Display the atom enclosure for the current post. + * Displays the atom enclosure for the current post. * * Uses the global $post to check whether the post requires a password and if * the user has the password for the post. If not then it will return before @@ -563,7 +565,7 @@ } /** - * Determine the type of a string of data with the data formatted. + * Determines the type of a string of data with the data formatted. * * Tell whether the type is text, HTML, or XHTML, per RFC 4287 section 3.1. * @@ -576,16 +578,16 @@ * * @since 2.5.0 * - * @param string $data Input string + * @param string $data Input string. * @return array array(type, value) */ function prep_atom_text_construct( $data ) { - if ( strpos( $data, '<' ) === false && strpos( $data, '&' ) === false ) { + if ( ! str_contains( $data, '<' ) && ! str_contains( $data, '&' ) ) { return array( 'text', $data ); } if ( ! function_exists( 'xml_parser_create' ) ) { - trigger_error( __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); + wp_trigger_error( '', __( "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." ) ); return array( 'html', "" ); } @@ -597,7 +599,7 @@ unset( $parser ); if ( ! $code ) { - if ( strpos( $data, '<' ) === false ) { + if ( ! str_contains( $data, '<' ) ) { return array( 'text', $data ); } else { $data = "