Skip to content

Instantly share code, notes, and snippets.

@pavlo-bondarchuk
Created December 3, 2017 15:41
Show Gist options
  • Select an option

  • Save pavlo-bondarchuk/92928ea125a46b50b9f6287cf3e7f28e to your computer and use it in GitHub Desktop.

Select an option

Save pavlo-bondarchuk/92928ea125a46b50b9f6287cf3e7f28e to your computer and use it in GitHub Desktop.
display by post_type
<?php $post_type = get_post_type( $post_id ) ?>
<? if ($post_type == 'apartments') { echo 'Квартира'; }
elseif ($post_type == 'houses') { echo 'Дом'; }
elseif ($post_type == 'plots') { echo 'Участок'; }
elseif ($post_type == 'commercials') { echo 'Коммерческая недвижимость'; }
elseif ($post_type == 'hotels') { echo 'Гостиница'; }
else { echo 'Новость'; }
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment