NAzT
9/12/2013 - 7:48 AM

"public_html/wp-content/themes/charitas-wpl/inc/headerdata.php"

"public_html/wp-content/themes/charitas-wpl/inc/headerdata.php"

*-----------------------------------------------------------------------------------*/
/*      Doctitle
/*-----------------------------------------------------------------------------------*/

function wplook_doctitle() {

        if ( is_search() ) {
          $content = __('Search Results for:', 'wplook');
          $content .= ' ' . esc_html(stripslashes(get_search_query()));
        }

        elseif ( is_category() ) {
          global $author;
          $user_info = get_userdata($author);
          
          $content .= single_cat_title("", false) . ": " . $user_info->display_name;
        }

        elseif ( is_day() ) {
                $content = __( 'Daily Archives:', 'wplook');
                $content .= ' ' . esc_html(stripslashes( get_the_date()));
        }

        elseif ( is_month() ) {
                $content = __( 'Monthly Archives:', 'wplook');
                $content .= ' ' . esc_html(stripslashes( get_the_date( 'F Y' )));
        }
        elseif ( is_year()  ) {
                $content = __( 'Yearly Archives:', 'wplook');
                $content .= ' ' . esc_html(stripslashes( get_the_date( 'Y' ) ));
        }

        elseif ( is_tag() ) {
          $content = __('Tag Archives:', 'wplook');
          $content .= ' ' . single_tag_title( '', false );
        }

        elseif ( is_author() ) {
          $content = __("Author's Posts", 'wplook');