/*
 Theme Name:   Eduma Child
 Theme URI:    http://educationwp.thimpress.com/
 Description:  Eduma Child Theme
 Author:       ThimPress
 Author URI:   http://thimpress.com
 Template:     eduma
 Version:      1.0.0
 Text Domain:  eduma-child
*/
/* FORCE Eduma Featured Title Area on Single Course */
add_filter( 'thim_show_page_title', function( $show ) {
    if ( is_singular( 'lp_course' ) ) {
        return true;
    }
    return $show;
});
