Upgraded to WordPress 6.0 and have issues? Please check the hotfix which you need to apply.

Okay
  Public Ticket #1568087
where I can find shortcode of [vu_]
Closed

Comments

  •  6
    devphnompenh started the conversation

    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

  •  104
    FlexiPress replied

    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:

    $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.

    Best,


    FlexiPress Support

    Follow on     Envato     Facebook     Twitter

  •  6
    devphnompenh replied

    Thx