Home › Support Forums › Theme Support › Enlightenment › Custom Query Sticky Posts, can't get rid of byline entry-meta › Reply To: Custom Query Sticky Posts, can't get rid of byline entry-meta
Daniel Tara
Keymaster
Add this code to your child theme’s functions.php file:
function enlightenment_child_custom_query_widget_hooks( $query_name ) { if( 'custom_query_widget_list' == $query_name ) { remove_action( 'enlightenment_custom_before_entry', 'enlightenment_custom_query_widget_add_meta' ); remove_action( 'enlightenment_custom_entry_content', 'the_content' ); remove_action( 'enlightenment_custom_before_entry', 'enlightenment_custom_query_widget_content_switcher' ); add_action( 'enlightenment_custom_entry_content', 'the_excerpt' ); } } add_action( 'enlightenment_before_custom_loop', 'enlightenment_child_custom_query_widget_hooks', 12 );