shortcode_atts_{$shortcode}

shortcode_atts_{$shortcode}

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('shortcode_atts_{$shortcode}') is found 1 times:

  • /wp-includes/shortcodes.php line 690
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
             * @param array  $pairs     The supported attributes and their defaults.
             * @param array  $atts      The user defined shortcode attributes.
             * @param string $shortcode The shortcode name.
             */
            $out = apply_filters( "shortcode_atts_{$shortcode}", $out, $pairs, $atts, $shortcode );
        }
     
        return $out;
    }
     
    /**