Post Selection Shortcode
Default shortcode
[avf-post-selection name="Name of Post Selection" id="651d5d747423a"]<?php
// a) using do_shortcode
echo do_shortcode('[avf-post-selection name="Name of Post Selection" id="651d5d747423a"]');
// b) using the special plugin class
use Org\Wplake\Advanced_Views\Bridge\Advanced_Views;
echo Advanced_Views::card_shortcode('651d5d747423a', 'name')
->render();Last updated