I am trying to install a carousel gallery on this one page, which I have created in base theme for platform pro. This is the link to see what plugin it is if you require: [http://wordpress.org...l/installation/
It asks to place this code in my page template (which in this case, is the child functions.php? AM i correct in this assumption?:
<?php wp_carousel(CAROUSEL'S ID); ?>
I m trying to understand hooks so I can add this on my own without having to ask everytime. I think i had it, but then i got an error, this is my interrpretation of it:
add_action('pagelines_after_theloop','wp_carousel')
function wp_carousel(){
if (is_page('114')):
wp_carousel('0');
endif;
}
But of course, that didn't work? Which line is incorrect so I can learn from my mistakes to do this own my own and add php functions on my own (I would like to add more than one gallery on this page)?
My page is called page.114.php for your reference.
Any suggestions of how I can add this to the page template would be greatly appreciated. thank you kindly.
Carolyn












