admin管理员组文章数量:1346656
I have a little plugin to fetch posts from a specific site on my network, filtered by a shortcode attribute.
[directory]
pulls in a full list of all posts of type "person," but [directory tag="tag-slug"]
does not—"No persons found." What am I missing here?? Without any shortcode attributes, the output clearly indicates that my posts DO have valid tags.
<?php
function multisite_person_directory_shortcode($atts) {
$atts = shortcode_atts([
'tag' => ''
], $atts, 'directory');
if (!is_multisite()) {
return 'This plugin requires a WordPress multisite environment.';
}
switch_to_blog(354);
$args = [
'post_type' => 'person',
'posts_per_page' => -1,
'tax_query' => []
];
// Filter by post_tag if provided
if (!empty($atts['tag'])) {
$args['tax_query'][] = [
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => sanitize_text_field($atts['tag'])
];
}
$query = new WP_Query($args);
$output = '<div class="directory-list">';
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
// Fetch meta fields
$first = get_post_meta(get_the_ID(), 'wpcf-first', true);
$last = get_post_meta(get_the_ID(), 'wpcf-last', true);
// Fetch taxonomies
$tags = get_the_terms(get_the_ID(), 'post_tag');
$tag_list = $tags ? implode(', ', wp_list_pluck($tags, 'name')) : 'None';
// Build output
$output .= '<div class="directory-entry">';
$output .= '<h3>' . esc_html($first) . ' ' . esc_html($last) . '</h3>';
$output .= '<p><strong>Tags:</strong> ' . esc_html($tag_list) . '</p>';
$output .= '</div>';
}
} else {
$output .= '<p>No persons found.</p>';
}
$output .= '</div>';
restore_current_blog();
return $output;
}
add_shortcode('directory', 'multisite_person_directory_shortcode');```
本文标签: Fetch Wordpress multisite posts by tagStack Overflow
版权声明:本文标题:Fetch Wordpress multisite posts by tag - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830987a2546508.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论