Shortcode
// Add Shortcode function custom_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'foo' => 'bar', ), $atts, '' ); } add_shortcode( '', 'custom_shortcode' );
// Add Shortcode function custom_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'foo' => 'bar', ), $atts, '' ); } add_shortcode( '', 'custom_shortcode' );