mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Allow the_title_attribute() to receive a post argument, and use this in get_adjacent_post_rel_link() to make sure tags are stripped from the title output there.
Fixes #24232. git-svn-id: https://develop.svn.wordpress.org/trunk@24783 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -69,15 +69,15 @@ function the_title($before = '', $after = '', $echo = true) {
|
||||
* @return string|null Null on failure or display. String when echo is false.
|
||||
*/
|
||||
function the_title_attribute( $args = '' ) {
|
||||
$title = get_the_title();
|
||||
$defaults = array('before' => '', 'after' => '', 'echo' => true, 'post' => get_post() );
|
||||
$r = wp_parse_args($args, $defaults);
|
||||
extract( $r, EXTR_SKIP );
|
||||
|
||||
$title = get_the_title( $post );
|
||||
|
||||
if ( strlen($title) == 0 )
|
||||
return;
|
||||
|
||||
$defaults = array('before' => '', 'after' => '', 'echo' => true);
|
||||
$r = wp_parse_args($args, $defaults);
|
||||
extract( $r, EXTR_SKIP );
|
||||
|
||||
$title = $before . $title . $after;
|
||||
$title = esc_attr(strip_tags($title));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user