Created
March 2, 2016 14:36
-
-
Save MasterHans/c04f85adcefce1fdb975 to your computer and use it in GitHub Desktop.
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
<div class="col-md-4 column"> | |
<div class="service-block"> | |
<?php | |
$post = get_post_by_slug('reabilitatsiya-v-tsentre'); | |
$post_id = $post -> ID; | |
?> | |
<div class="service-image"> | |
<?php echo get_the_post_thumbnail( $post_id, [355,148] ); ?> | |
<i class="fa fa-codepen"></i> | |
</div> | |
<h3><?php the_title() ?></h3> | |
<?php the_excerpt(); ?> | |
<?php | |
$idObj = get_category_by_slug('kak-myi-rabotaem');/*Получаем категорию по слагу*/ | |
$id = $idObj->term_id; | |
?> | |
<a href="<?php echo get_category_link($id) . '#reabilitatsiya-v-tsentre'?>" title="<?php echo get_cat_name($id) ?>" title="">УЗНАТЬ БОЛЬШЕ</a> | |
<?php wp_reset_postdata(); ?> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment