[Plugin Jetpack] Put content between actual post and share buttons
-
Hi everyone,
I am kinda experimenting with a custom page layout I’d like to use on my website for reviews. I want to use a Custom Field to display a rating at the end of my review, so I used this piece of code:
<div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?> <a title="<?php the_title(); ?> recensie review" href="<?php echo get_post_meta($post->ID, "Recensielink", true); ?>"><strong>Beoordeling:</strong> <img title="<?php the_title(); ?> recensie review" alt="<?php the_title(); ?> recensie review" src="https://www.meerdangames.nl/basis/score<?php echo get_post_meta($post->ID, "Beoordeling", true); ?>.png"/></a><br/> <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?> </div><!-- .entry-content -->
But the result is this: https://testkees.meerdangames.nl/?p=11212, the image with the stars is displayed AFTER the sharebuttons and related post both provided by Jetpack. I the code, there is only the_content, so how do I place the image between the actual review and the share buttons etc.?
By the way: Current website is a fake placeholder for experimenting with this kind of stuff, so yeah, I know it doesn’t look so well at this moment ??
- The topic ‘[Plugin Jetpack] Put content between actual post and share buttons’ is closed to new replies.