Created
December 3, 2017 15:41
-
-
Save pavlo-bondarchuk/92928ea125a46b50b9f6287cf3e7f28e to your computer and use it in GitHub Desktop.
display by post_type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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