Search Results

Search again:

STOP STOP STOP: DO NOT ACTIVATE THIS CODE BLOCK. COPY THE CODE BELOW AND PASTE IN YOUR FUNCTIONS.PHP FILE. ONCE YOU'VE ADDED IT TO FUNCTIONS.PHP, DELETE THIS CODE BLOCK.

/**
Identify search results by content type
**/

add_filter( 'bricks/code/echo_function_names', function() {
  return [
    'frames_get_current_post_type',
  ];
} );

if ( ! function_exists( 'frames_get_custom_post_type' ) ) {
 
	function frames_get_current_post_type() {
        global $post;

        return $post ? get_post_type_object(get_post_type($post))->labels->singular_name : "post";
    }
}