kimschmidt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: TwentyTen – Removing 'Posted in' from postsAgent_Trig – did you figure this out?
Find where it says the following code minus the <!– and the –> and add that to the loop.php page. Also to remove the category, use the code alchymyth posted and use the canceling <!– and –> at the end (see below.).
<!–<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>–><!– <div class=”entry-utility”>
<?php if ( count( get_the_category() ) ) : ?>
<span class=”cat-links”>
<?php printf( __( ‘<span class=”%1$s”>Posted in</span> %2$s’, ‘twentyten’ ), ‘entry-utility-prep entry-utility-prep-cat-links’, get_the_category_list( ‘, ‘ ) ); ?>
</span>
<span class=”meta-sep”>|</span>
<?php endif; ?>
<?php
$tags_list = get_the_tag_list( ”, ‘, ‘ );
if ( $tags_list ):
?>
<span class=”tag-links”>
<?php printf( __( ‘<span class=”%1$s”>Tagged</span> %2$s’, ‘twentyten’ ), ‘entry-utility-prep entry-utility-prep-tag-links’, $tags_list ); ?>
</span>
<span class=”meta-sep”>|</span>
<?php endif; ?>
<span class=”comments-link”><?php comments_popup_link( __( ‘Leave a comment’, ‘twentyten’ ), __( ‘1 Comment’, ‘twentyten’ ), __( ‘% Comments’, ‘twentyten’ ) ); ?></span>
<?php edit_post_link( __( ‘Edit’, ‘twentyten’ ), ‘<span class=”meta-sep”>|</span> <span class=”edit-link”>’, ‘</span>’ ); ?>
</div>–><!– .entry-utility –>Forum: Fixing WordPress
In reply to: Disable menu…twentyten templateYou don’t actually have to remove the text – you can just cancel it out using the following code.
<!– at the beginning of the code and at the end put –>
for example
<!– <div id=”access”…
</div> –> <!– #access–>