Not sure if it's just this one widget in particular or if I'm doing something wrong but it seems that the Featured Post widget doesn't call the hooks for the content. I have the widget added to my homepage widget area and I have the following code in my theme's functions:
function go_before_post() {
echo "TESTING";
}
add_action( 'genesis_before_post_content', 'go_before_post' );
The word TESTING appears on the post's page but does not appear before the content in the featured posts widget. Taking a look at the widget source it looks like it doesn't call any hooks. Is this the case and is there any reason for that?