I can't find the available short-code eg: [vu_recent_posts], for example i want to add number of post or category of post. How can I add? where can I check? please advice
You can find all shortcode attributes (see attached) in others.php file located at wp-content/plugins/housico-shortcodes/shortcodes/. If you want to add posts from specific categories then you need to add an extra parameter to WP_Query() at line 125, as shown below:
$recent_posts = new WP_Query('cat=1,3&orderby=date&order=DESC&posts_per_page='. absint($atts['number_of_posts']));
where 1,3 represent the category IDs.
p.s. If you're not comfortable making the above changes please tell us the category names you want to show and we will be happy to assist you.
Hi Flexi,
I can't find the available short-code eg: [vu_recent_posts], for example i want to add number of post or category of post. How can I add? where can I check? please advice
Hi there,
You can find all shortcode attributes (see attached) in others.php file located at wp-content/plugins/housico-shortcodes/shortcodes/. If you want to add posts from specific categories then you need to add an extra parameter to WP_Query() at line 125, as shown below:
where 1,3 represent the category IDs.
p.s. If you're not comfortable making the above changes please tell us the category names you want to show and we will be happy to assist you.
Best,
FlexiPress Support
Follow on Envato Facebook Twitter
Thx