Skip to content

Instantly share code, notes, and snippets.

@campusboy87
Last active March 16, 2018 09:12
Show Gist options
  • Save campusboy87/49283169070e81bdca50ebeb30bdbdb2 to your computer and use it in GitHub Desktop.
Save campusboy87/49283169070e81bdca50ebeb30bdbdb2 to your computer and use it in GitHub Desktop.
Возвращает данные о метках постов, входящих в указанную(ые) рубрику(и)
<?php
/**
* Возвращает данные о метках постов, входящих в указанную(ые) рубрику(и)
*
* @param array|string $ids массив id рубрик(и) или строка с перечислением id через запятую
*
* @return array|bool $tags массив с метками или false в случае неудачи
*/
function get_category_tags( $ids ) {
/**
* @var wpdb $wpdb
*/
global $wpdb;
$ids = implode( ",", wp_parse_id_list( $ids ) );
// Запрос в БД на основе $ids
$tags = $wpdb->get_results( "
SELECT DISTINCT terms2.term_id as tag_id, terms2.name as tag_name, null as tag_link
FROM
$wpdb->posts as p1
LEFT JOIN wp_term_relationships as r1 ON p1.ID = r1.object_ID
LEFT JOIN wp_term_taxonomy as t1 ON r1.term_taxonomy_id = t1.term_taxonomy_id
LEFT JOIN wp_terms as terms1 ON t1.term_id = terms1.term_id,
$wpdb->posts as p2
LEFT JOIN wp_term_relationships as r2 ON p2.ID = r2.object_ID
LEFT JOIN wp_term_taxonomy as t2 ON r2.term_taxonomy_id = t2.term_taxonomy_id
LEFT JOIN wp_terms as terms2 ON t2.term_id = terms2.term_id
WHERE
t1.taxonomy = 'category' AND p1.post_status = 'publish' AND terms1.term_id IN (" . $ids . ") AND
t2.taxonomy = 'post_tag' AND p2.post_status = 'publish'
AND p1.ID = p2.ID
ORDER by tag_name
" );
// Если есть результаты, то добавляем в массив ссылки на теги
if ( $tags ) {
foreach ( $tags as $count => $tag ) {
$tags[ $count ]->tag_link = get_tag_link( $tag->tag_id );
}
} else {
$tags = false;
}
return $tags;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment