Function Reference: geodir_remove_hentry

Summary

Remove the hentry class structured data from details pages.

Parameters

($class) (required)

Default: None

Return Values

(array)

    Change Log

    Since: 1.6.5

    Source File

    geodir_remove_hentry() is located in geodirectory-functions/general_functions.php [Line: 5247]

    Source Code

    function geodir_remove_hentry( $class ) {
    	if ( geodir_is_page( 'detail' ) ) {
    		$class = array_diff( $class, array( 'hentry' ) );
    	}
    
    	return $class;
    }