shkasjon
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Flamingo] Display all post titles for authorhere is my code
$args = array(
‘post_type’=> ‘flamingo_inbound’,
‘orderby’ => ‘ID’,
‘post_status’ => ‘publish’,
‘posts_per_page’ => -1 // this will retrive all the post that is published
);
$result = new WP_Query( $args );
echo ‘- ‘;
- ‘ . the_title() . ‘
if ( $result-> have_posts() ) : while ( $result->have_posts() ) : $result->the_post();
echo ‘‘;
endwhile;
echo ‘‘;
endif; wp_reset_postdata();Forum: Plugins
In reply to: [Pay For Post with WooCommerce] For taxonomies pleasethanks, it works!
Forum: Plugins
In reply to: [WP-PostRatings] How to show username near rated post?I mean to show all usernames who rate the post, like in dashboard your plugin have Manage Rating and there I have usernames in logs. It`s possible to show those usernames on posts near rating results?
Thanks in advance!
alert not working..
find on kk-star-ratings/index.php this line $avg = $score ? number_format((float)($score/$votes) and replace to $avg = $score ? number_format((float)($score/$votes)*2I don`t now if its right.. but it works!
Viewing 5 replies - 1 through 5 (of 5 total)