IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
| | 57 | * Retrieve the sanitized post title. |
| | 58 | * |
| | 59 | * @since |
| | 60 | * |
| | 61 | * @param string|array $args { |
| | 62 | * Title attribute arguments. Optional. |
| | 63 | * @return string|void String if $echo parameter is false. |
| | 64 | */ |
| | 65 | function get_title_attribute( $args = '' ) { |
| | 66 | $r = wp_parse_args( $args, array( 'echo' => false ) ); |
| | 67 | return the_title_attribute( $r ); |
| | 68 | } |
| | 69 | |
| | 70 | /** |
| 57 | 71 | * Sanitize the current title when retrieving or displaying. |
| 58 | 72 | * |
| 59 | 73 | * Works like the_title(), except the parameters can be in a string or |