Adding A Featured Image To A Page In Genesis

After looking around the web for a good tutorial, I really couldn’t find what that accomplished what I was looking to do.

It sounds simple. I want to add a featured image to a page in Genesis. No problem right? Not exactly. Genesis doesn’t work like a normal wordpress site, but then if you are reading this post, you probably already know that.

So after reading a bunch of complicated tutorials that didn’t work, I stumbled on one that wasn’t exactly what I was looking for, but gave me a new direction to try.

So we need to add this to our functions.php file. Always make a back up first.

So Here it is:
First we have to create the image size we want. In my case I wanted one that was 960px wide and 150px high.


add_image_size( 'featured-single', 960, 150, TRUE );

The TRUE means it can be cropped.

Next we have to add the following code:

add_filter ( 'genesis_before_content_sidebar_wrap', 'your_custom_header' );

function your_custom_header () {
echo '

';

}

So we are using a filter to display our new “featured-single” in a function called your_custom_header.

You can put it wherever you want. The visual hook guide is very helpful.

In my case I put I wanted to put it before the content, but you can put it wherever you want.

Very simple. It took a lot of searching to find this, but I am happy now that it works.

Are Facebook ads worth it?

By Dave Fogel | December 27, 2022

Facebook ads are becoming increasingly popular among businesses of all sizes, as they offer a low-cost, highly-effective way to reach a large audience. But are they really worth it? The answer is yes! Facebook ads can offer an unparalleled reach, allowing you to target specific audiences, demographics, and interests. This means that you can target…

9 Reasons why Facebook Ads are effective

By Dave Fogel | December 27, 2022

Facebook has a massive user base, with over 2.934 billion monthly active users as of 2022. This means that businesses have a vast pool of potential customers to target with their ads. Facebook’s ad targeting options are highly specific and granular. Businesses can target their ads based on demographics, interests, behaviors, and more. This allows…

7 reasons why Google Ads are important

By Dave Fogel | December 20, 2022

Google Ads is a powerful platform that allows businesses to advertise their products or services through Google’s search engine, search partners, and other properties, such as Google Maps and YouTube. Here are seven reasons why Google Ads is important for businesses: Reach new customers: Google Ads allows you to reach a wider audience and attract…

Posted in

Dave Fogel

Leave a Comment