Where could I replace this line from header.php? or other file?
<?php do_action(‘slideshow_deploy’, ’58’); ?>
Yes open header.php, and add your plugin code:
To place it above the menu: paste it under the
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
Below the menu: paste it above the ending </div> that is at the very bottom of the file.
Remove the header image in the customizer.
thanks poena. I made it to work on slideshow on all the pages.
but please let me know how to make the slideshow appear on only home screen not on other page.
try this
<?php
if ( is_home() ) {
// This is a homepage
do_action('slideshow_deploy', '58');
}
?>