Hi,
hope you can help. How can i implement wp post ratings within the page header (is on all pages activated in my theme). I want the stars right after the Page Title and before the breadcrumbs.
Thank you for your help
Hey Voxmoney!
This is not possible because the rating code should be included within the <?php while (have_posts()) : the_post(); ?> code. You can only move the rating position using this on Quick CSS:
.post-ratings {
position: absolute;
top: -30px;
right: 0;
}
This will move it at the top of the featured images if you have one.
Cheers!
Ismael