Skip to content

Instantly share code, notes, and snippets.

@Kuprich
Last active November 16, 2016 12:08
Show Gist options
  • Save Kuprich/313ccff0fdd3c5f5b7554fbedadeafe4 to your computer and use it in GitHub Desktop.
Save Kuprich/313ccff0fdd3c5f5b7554fbedadeafe4 to your computer and use it in GitHub Desktop.
WordPress Получить ID из ссылки (получить название категории)
// Получаем ссылку на объект
// Берем из него ID
// Выводим название категории по ID
<?php
$idObj = get_category_by_slug('s_about');
$id = $idObj->term_id;
echo get_cat_name($id);
?>
можно вывести другим способом
<?php
echo get_category_by_slug('s_about')->cat_name;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment