Home › Forums › Bug Reports › get_field() from WP_Term returns ID on archive page › Reply To: get_field() from WP_Term returns ID on archive page
Hello @hube2 !
Thank you for your message !
You were right, it was a conflict with a filter function that i’ve added to show Custom Post Types in archives. Otherwise, only posts are displayed :/
This one exactly:
/**
* Archives.php only shows content of type 'post', but you can alter it to include custom post types.
* Add this filter to your functions.php file
* @url https://css-tricks.com/snippets/wordpress/make-archives-php-include-custom-post-types/
*/
function proov_add_custom_types( $query ) {
if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) {
$query->set( 'post_type', array(
'post', 'nav_menu_item', 'oeuvre'
));
return $query;
}
}
add_filter( 'pre_get_posts', 'proov_add_custom_types' );
I’m gonna try something else ^^
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
π Weβre excited to announce we've released Composer support for installing ACF PRO.
— Advanced Custom Fields (@wp_acf) January 31, 2023
π #ComposerPHP fans rejoice!
β¨ Please see the release post for all the details and full instructions. https://t.co/ebEfp61nlR
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.