Yabba explained this to me, but I'll post it here in case it could help someone else. The params can be used to display the skintag more than once.
if ( $params['display'] == 'head' ) { // Display the head code
echo 'Put your head stuff here';
} else { // Display the code for the body
echo 'Put the body stuff here';
}
Yabba explained this to me, but I'll post it here in case it could help someone else. The params can be used to display the skintag more than once.