How to create a shortcode using WP-PostViews plugin?
-
I am using the famous WP-PostViews plugin, which already comes with a function to call the most-viewed posts.
<?php if (function_exists('get_most_viewed')): ?> <ul> <?php get_most_viewed(); ?> </ul> <?php endif; ?>My question is: how to use the function
get_most_viewedand create a shortcode for it in function.php?I am no programmer and this task is beyond my current range to tackle.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘How to create a shortcode using WP-PostViews plugin?’ is closed to new replies.