Shortcode
// Add Shortcode
function mat_ajax( $atts , $content = null ) {
// Attributes
$atts = shortcode_atts(
array(
'type' => 'url',
'content' => '#',
),
$atts
);
}
add_shortcode( 'mat_ajax', 'mat_ajax' );
// Add Shortcode
function mat_ajax( $atts , $content = null ) {
// Attributes
$atts = shortcode_atts(
array(
'type' => 'url',
'content' => '#',
),
$atts
);
}
add_shortcode( 'mat_ajax', 'mat_ajax' );