Home Forums Support Slider Reply To: Slider

#167593
Tom
Lead Developer
Lead Developer

You can use if conditions to apply them to specific pages: https://codex.wordpress.org/Conditional_Tags

For example:

<?php if ( is_page( 'my-page-slug' ) ) : ?>
	Content in here will only show up on mywebsite.com/my-page-slug 
<?php endif; ?>

For multiples:

<?php if ( is_page( array( 'slug-1','slug-2','slug-3' ) ) ) : ?>
	This content will show on mywebsite.com/slug-1 and so on..
<?php endif; ?>

Then be sure to check the “Execute PHP” checkbox.