ruạṛ
<?php /** * Page titles */ function roots_title() { if (is_home()) { if (get_option('page_for_posts', true)) { return get_the_title(get_option('page_for_posts', true)); } else { return __('Latest Posts', 'roots'); } } elseif (is_single()) { return ''; } elseif (is_archive()) { $t = get_the_archive_title('',true); return preg_replace('/Category:/i','',$t); } elseif (is_search()) { return sprintf(__('Search Results for %s', 'roots'), get_search_query()); } elseif (is_404()) { return __('Not Found', 'roots'); } else { return get_the_title(); } }
cải xoăn