Move tags to bottom of post.
-
I’ve been trying to move only my tags to the footer of my posts (digital-witness.net) Most of the support pages I’m reading tell me to move data around on the content.php template. Nothing I’ve tried has worked (not good a coding), so here’s my content.php. What do I have to do to get my tags to display at the bottom?
<?php /** * @package big-brother */ $formats = get_theme_support( 'post-formats' ); $format = get_post_format(); ?> <div class="article-wrapper"> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( 'link' == $format ) : ?> <h1 class="entry-title"><a href="<?php echo esc_url( big_brother_get_link_url() ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php else : ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php endif; ?> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php if ( $format && in_array( $format, $formats[0] ) ): ?> <a class="entry-format" href="<?php echo esc_url( get_post_format_link( $format ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'big-brother' ), get_post_format_string( $format ) ) ); ?>"><?php echo get_post_format_string( $format ); ?></a> <?php endif; ?> <?php big_brother_posted_on(); ?> <?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?> <?php /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( __( ', ', 'big-brother' ) ); if ( $categories_list && big_brother_categorized_blog() ) : ?> <?php printf( __( '<span class="entry-categories">%1$s</span>', 'big-brother' ), $categories_list ); ?> <?php endif; // End if categories ?> <?php /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', __( ', ', 'big-brother' ) ); if ( $tags_list ) : ?> <?php printf( __( '<span class="entry-tags">%1$s</span>', 'big-brother' ), $tags_list ); ?> <?php endif; // End if $tags_list ?> <?php endif; // End if 'post' == get_post_type() ?> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'big-brother' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'big-brother' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <footer class="entry-meta"> <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?> <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'big-brother' ), __( '1 Comment', 'big-brother' ), __( '% Comments', 'big-brother' ) ); ?></span> <?php endif; ?> <?php edit_post_link( __( 'Edit', 'big-brother' ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-meta --> </article><!-- #post-## --> </div>The blog I need help with is: (visible only to logged in users)
-
Hello there,
See here for details on purchasing the annually renewable Premium bundle http://store.wordpress.com/plans/premium/ that contains a custom design upgrade required for CSS editing:
Make sure you read all of these Custom design – Frequently Asked Questions
http://en.support.wordpress.com/custom-design/#frequently-asked-questions
http://en.support.wordpress.com/custom-design/
http://en.support.wordpress.com/custom-design/editing-css/
http://en.support.wordpress.com/custom-design/custom-fonts/Note that provided you have purchased the required upgrade you can use this link https://en.forums.wordpress.com/forum/css-customization#postform so you can create a thread that will appear in the CSS Forum where you will get the help you need with CSS editing.
-
I do not see an Admin bar at the top of your site and removing it and or the footer credit links are Terms of Service violations. https://en.wordpress.com/tos/
-
I don’t see how I could have removed my admin bar if I can’t customize the CSS without premium (and I do certainly see the bar and do not have premium).
-
Well, that’s interesting now isn’t it? I missed noticing that you are asking about a powered by wordpress http://wordpress.org/ software install that we do not provide support for. I apologize for that.
You are posting to the wrong support forum to get help with that site.
WordPress.COM and WordPress.ORG are completely separate and have different username accounts, logins, features, run different versions of some themes with the same names, and have separate support documentation and separate support forums. Read the differences here http://en.support.wordpress.com/com-vs-org/
If you don’t have a username account at WordPress.ORG account, then click http://wordpress.org/support/ and register one on the top right hand corner of the page that opens, https://wordpress.org/support/register.php so you can post to the support forums there.
Resetting your WordPress.ORG password http://codex.wordpress.org/Resetting_Your_Password
WordPress.org support docs are at https://codex.wordpress.org/Main_PageSee also https://apps.wordpress.org/support/
- The topic ‘Move tags to bottom of post.’ is closed to new replies.