zentralpet_pet_vaccines
Show all pet vaccines and/or controlls to add, delete or edit pet vaccines
// Add Shortcode
function show_zentralpet_pet_vaccines( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'pet' => '',
'ui' => '"complete"',
),
$atts
);
<table>
<tr><td></td></tr>
</table>
}
add_shortcode( 'zentralpet_pet_vaccines', 'show_zentralpet_pet_vaccines' );