%PDF- %PDF-
Direktori : /proc/thread-self/root/var/www/pn/wp-content/themes/intosai/lib/ |
Current File : //proc/thread-self/root/var/www/pn/wp-content/themes/intosai/lib/titles.php |
<?php namespace Roots\Sage\Titles; /** * Page titles */ function title() { if (is_home()) { if (get_option('page_for_posts', true)) { return get_the_title(get_option('page_for_posts', true)); } else { return __('Senaste inlägg', 'sage'); } } elseif (is_archive()) { return get_the_archive_title(); } elseif (is_search()) { return sprintf(__('Sökresultat för %s', 'sage'), get_search_query()); } elseif (is_404()) { return __('Error 404 - Sidan hittades inte', 'sage'); } else { return get_the_title(); } }