snip1
desc
// Add Shortcode
function custom_shortcode( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
),
$atts,
'taf'
);
}
add_shortcode( 'taf', 'custom_shortcode' );
desc
// Add Shortcode
function custom_shortcode( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
),
$atts,
'taf'
);
}
add_shortcode( 'taf', 'custom_shortcode' );