'', 'after_widget' => '', 'before_title' => '

', 'after_title' => '

', )); add_theme_support( 'automatic-feed-links' ); add_custom_background(); $themecolors = array( 'bg' => 'fff', 'border' => '777', 'text' => '222', 'link' => '004276', ); $content_width = 720; // pixels function tj_comment_class( $classname='' ) { global $comment, $post; $c = array(); if ($classname) $c[] = $classname; // Collects the comment type (comment, trackback), $c[] = $comment->comment_type; // If the comment author has an id (registered), then print the log in name if ( $comment->user_id > 0 ) { $user = get_userdata($comment->user_id); // For all registered users, 'byuser'; to specificy the registered user, 'commentauthor+[log in name]' $c[] = "byuser comment-author-" . sanitize_title_with_dashes(strtolower($user->user_login)); // For comment authors who are the author of the post if ( $comment->user_id === $post->post_author ) $c[] = 'bypostauthor'; } // Separates classes with a single space, collates classes for comment LI return implode( ' ', apply_filters( 'comment_class', $c, array(), $comment->comment_ID, $comment, $post ) ); } function journalist13_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; extract($args, EXTR_SKIP); ?>
  • ">
    %s said, on %s at %s','journalist-13'),get_comment_author_link(),get_comment_date(get_option('date_format')),esc_url(get_comment_link()),get_comment_time(get_option('time_format')));?>
    comment_approved == '0') : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
    tag based on what is being viewed. * * @since he Journalist v1.3 1.3 */ function journalist13_wp_title( $title, $sep ) { global $page, $paged; if ( is_feed() ) return $title; // Add the blog name $title .= get_bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title .= " $sep $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) $title .= " $sep " . sprintf( __( 'Page %s', 'journalist-13' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'journalist13_wp_title', 10, 2 );