diff --git src/wp-includes/post-template.php src/wp-includes/post-template.php
index be15252..5dbeafc 100644
|
|
|
function get_the_ID() { |
| 34 | 34 | * |
| 35 | 35 | * @since 0.71 |
| 36 | 36 | * |
| 37 | | * @param string $before Optional. Content to prepend to the title. |
| 38 | | * @param string $after Optional. Content to append to the title. |
| 39 | | * @param bool $echo Optional, default to true.Whether to display or return. |
| 40 | | * @return string|void String if $echo parameter is false. |
| | 37 | * @param string $before Optional. Content to prepend to the title Default empty. |
| | 38 | * @param string $after Optional. Content to append to the title Default empty. |
| | 39 | * @param bool $echo Optional. Whether to display or return. Default true. |
| | 40 | * @return string|void The current post title if `$echo = false`. |
| 41 | 41 | */ |
| 42 | 42 | function the_title( $before = '', $after = '', $echo = true ) { |
| 43 | 43 | $title = get_the_title(); |