|
@@ 4619-4621 (lines=3) @@
|
| 4616 |
|
$title = str_replace( "%%title%%", $post->post_title, $title );
|
| 4617 |
|
}
|
| 4618 |
|
|
| 4619 |
|
if ( strpos( $title, '%%sitename%%' ) !== false ) {
|
| 4620 |
|
$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
|
| 4621 |
|
}
|
| 4622 |
|
|
| 4623 |
|
if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
|
| 4624 |
|
$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
|
|
@@ 4623-4625 (lines=3) @@
|
| 4620 |
|
$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
|
| 4621 |
|
}
|
| 4622 |
|
|
| 4623 |
|
if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
|
| 4624 |
|
$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
|
| 4625 |
|
}
|
| 4626 |
|
|
| 4627 |
|
if ( strpos( $title, '%%excerpt%%' ) !== false ) {
|
| 4628 |
|
$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
|