Skip to content

Instantly share code, notes, and snippets.

@mpodaniev
mpodaniev / WordPress Get Category name By label
Last active July 8, 2016 12:12 — forked from agragregra/WordPress Get Category name By label
Получаем Название Рубрики по ярлыку
<?php
$idObj = get_category_by_slug('s_about');
$id = $idObj->term_id;
echo get_cat_name($id);
?>
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.animated {
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
/*CSS transforms*/