I wondered if instead of
function edit_save($data, $post_id, $post_type)
{
if (($post_type == 'A') OR ($post_type == 'B')) {
// do this
}
I could use XOR as below — but it does this not work…
function edit_save($data, $post_id, $post_type)
{
if ($post_type == 'A' XOR 'B') { // pseudo code
// do this
}
Any suggestions how to simplify the overall syntax and present the 2 potential options for a variable within a conditional statement?
Seems like what you want is actually this:
Which in PHP 5.4+ will look even nicer: