Hi eshwarspy. I haven’t tested this but it should work. Copy /inc/featured.php from the parent theme to the same path in your child theme. Then modify the query at the beginning of the code to include the post types. The type ‘post’ is the default but you need to include it if you’re adding other types. Also note that you need to add a comma to the end of the line before post-type:
<?php
// Query featured entries
$featured = new WP_Query (
array(
'no_found_rows' => false,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'ignore_sticky_posts' => 1,
'posts_per_page' => ot_get_option('featured-posts-count'),
'cat' => ot_get_option('featured-category'),
'post_type' => array( 'post', 'my-custom-post-type' )
)
);
?>