Пример #1
0
function porto_shortcode_animation($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_template('porto_animation')) {
        include $template;
    }
    return ob_get_clean();
}
function porto_shortcode_grid_container($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_template('porto_grid_container')) {
        include $template;
    }
    return ob_get_clean();
}
function porto_shortcode_recent_members($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_template('porto_recent_members')) {
        include $template;
    }
    return ob_get_clean();
}
Пример #4
0
function porto_shortcode_links_block($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_template('porto_links_block')) {
        include $template;
    }
    return ob_get_clean();
}