I have following links in content.php and i want to display in specific page with condition. Any ideas or suggestions? Thanks.
- Home
- Director’s speech
- Projects
- Our Vision
- Volunteers
- Inquiry
I have following links in content.php and i want to display in specific page with condition. Any ideas or suggestions? Thanks.
You can either create a custom page template, or just add the code to your regular page.php
:
if ( is_page( 'your-page-slug' ) )
{
echo 'your links';
}