I am trying to write a conditional query for a custom post type. I need it to be relevant to a specific post though. So for example, I have the current code which works for ALL projects:
<?php if ('project' == get_post_type() ) { ?>
// Get content
<?php } ?>
However, I need to be able to specify a certain project with ID 75. Is this possible?
Any help is greatly appreciated.
Cheers,