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

1 Answer
1

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';
}

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *