Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MasterHans/c04f85adcefce1fdb975 to your computer and use it in GitHub Desktop.
Save MasterHans/c04f85adcefce1fdb975 to your computer and use it in GitHub Desktop.
<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