jtklepp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Elements of SEO – Using different CSS for categoriesSo that is where my knowledge stops. I don’t actually know how you call a CSS. Is it in the template .php files of the theme? Or somewhere else?
Forum: Themes and Templates
In reply to: Elements of SEO – Using different CSS for categoriesThere is also a main.css used instead of style.css on the main page of the blog (and on individual posts). What is unclear is how this CSS is called for regular posts, and not for the categories, archives, etc.
Forum: Themes and Templates
In reply to: Elements of SEO – Using different CSS for categoriessorry. Link is here. I’ve narrowed it down to the main/posts page using a .jpg file (site-body-bn.jpg), but don’t understand how the category pages do not use the same background image.
Forum: Fixing WordPress
In reply to: Remove Author and Time tag from Carrington BlogThanks again for your response. However, the tags are not there? This is all the code. Perhaps is the first global setting?
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); } if (CFCT_DEBUG) { cfct_banner(__FILE__); } global $previousday, $authordata; $previousday = -1; ?> <div id="post-content-<?php the_ID() ?>" <?php post_class('full'); ?>> <h1 class="entry-title full-title"><a href="<?php the_permalink() ?>" title="Permanent link to <?php the_title_attribute() ?>" rel="bookmark" rev="post-<?php the_ID(); ?>"><?php the_title() ?></a></h1> <div class="entry-content full-content"> <?php the_content('<span class="more-link">'.__('Continued...', 'carrington-blog').'</span>'); $args = array( 'before' => '<p class="pages-link">'. __('Pages: ', 'carrington-blog'), 'after' => "</p>\n", 'next_or_number' => 'number' ); wp_link_pages($args); ?> <div class="clear"></div> </div><!-- .entry-content--> <p class="filed categories alt-font tight"><?php printf(__('Posted in %s.', 'carrington-blog'), get_the_category_list(', ')); ?></p> <?php the_tags(__('<p class="filed tags alt-font tight">Tagged with ', 'carrington-blog'), ', ', '.</p>'); ?> <p class="comments-link"><?php comments_popup_link(__('No comments', 'carrington-blog'), __('1 comment', 'carrington-blog'), __('% comments', 'carrington-blog')); ?></p> <div id="post-comments-<?php the_ID(); ?>-target"></div> <div class="clear"></div> <?php edit_post_link(__('Edit', 'carrington-blog'), '<div class="edit-post edit">', '</div>'); ?> </div><!-- .post -->
Forum: Fixing WordPress
In reply to: Remove Author and Time tag from Carrington BlogNot quite clear to me what I should remove. This is what I have around comments-link:
<p class="filed categories alt-font tight"><?php printf(__('Posted in %s.', 'carrington-blog'), get_the_category_list(', ')); ?></p> <?php the_tags(__('<p class="filed tags alt-font tight">Tagged with ', 'carrington-blog'), ', ', '.</p>'); ?> <p class="comments-link"><?php comments_popup_link(__('No comments', 'carrington-blog'), __('1 comment', 'carrington-blog'), __('% comments', 'carrington-blog')); ?></p>
I tried removing
<?php the_tags(__('<p class="filed tags alt-font tight">Tagged with ', 'carrington-blog'), ', ', '.</p>'); ?>
but it had no effect?
Forum: Fixing WordPress
In reply to: Remove Author and Time tag from Carrington BlogMany thanks! Does that mean I cannot use the wordpress control panel to edit? I can get to the content-default.php, but there is no tag there that I can see. The page.php seems to not be accessible from the wordpress control panel?