Skip to content

Render Replace Vars in the ID Field in WPBakery in the Total Theme like „{{category}}“

Apple Pen near iPad
//ENABLE ID FIELD RENDER SHORTCODE
add_filter( 'shortcode_atts_vc_row', function( $atts ) {
    if ( class_exists( 'TotalTheme\Replace_Vars' ) ) {
        foreach ( $atts as $k => $v ) {
            if ( in_array( $k, [ 'local_scroll_id', 'el_id' ] ) ) {
                $atts[ $k ] = (new TotalTheme\Replace_Vars())->replace( $v );
            }
        }
    }
    return $atts;
} );

Dieser Beitrag hat 0 Kommentare

Schreibe einen Kommentar

Deine E-Mail wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

An den Anfang scrollen