I am trying to write a conditional query for a custom message type. I need this to be important for a particular post. So, for example, I have the current code that works for ALL projects:
<?php if ('project' == get_post_type() ) { ?>
<?php } ?>
However, I need to specify a specific project with ID 75. Is this possible?
Any help is greatly appreciated.
Greetings
source
share