admin管理员组

文章数量:1302329

I am trying to add some custom content hooked into custom post type archive page but I can't. I have already achieved it in single page with:

add_filter( 'the_content', 'yourprefix_add_to_content' );

and is_singular(cpt) and then append some content, but when I try to do something similar to archive page with is_post_type_archive('cpt') it just doesn't work. Which is the right hook and function to do that?

本文标签: hooksAdd content in cpt archive page