• Resolved sionedfearon

    (@sionedfearon)


    Hi there!

    I am having trouble getting my categories to be displayed underneath my post. I hate having them at the top as it looks too texty above any photos which is primarily what I will be posting. Right now it looks like:

    Categories
    post title
    date
    photo I add
    my text

    Any help?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there,
    Try installing the Synchi plugin to enhance the default editor and then navigate to the /themes/your_olsen_light/ folder to find file
    content-entry.php, open it and find inside

    <?php if ( get_post_type() === 'post' ) : ?>
    		<div class="entry-meta entry-meta-top">
    			<p class="entry-categories">
    				<?php the_category( ', ' ); ?>
    			</p>
    		</div>
    	<?php endif; ?>

    cut it and paste it after

    <div class="entry-content" itemprop="text">
    		<?php if ( ! get_theme_mod( 'excerpt_on_classic_layout' ) ) {
    			the_content( '' );
    		} else {
    			the_excerpt();
    		} ?>
    	</div>

    Finally open single.php and locate

    <div class="entry-meta entry-meta-top">
    <p class="entry-categories">
    <?php the_category( ', ' ); ?>
    </p>
    </div>

    Cut and paste it before

    <div class="entry-tags">
    <?php the_tags( '', '' ); ?>
    </div>

    Let me know if this helps

    Thread Starter sionedfearon

    (@sionedfearon)

    That did it. Thank you so so much!

    Glad I could help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to get Categories to display UNDER your post’ is closed to new replies.