is_singular won’t call my functions?
is_single() returns TRUE or FALSE, not a string. Additionally, you can test for a specific post with is_single() function by putting the post slug into the function call: if ( is_single( ‘your-post-slug’ ) ) { # do something } If you want to test for the proper post type use: if ( is_singular() and ‘your-post-type’ … Read more