Show featured image next to post-teasers in Genesis Framework?

(Cut/pasted from the OP.) SOLUTION: As it turns out, this is very simple. Go to your Dashboard –> Genesis –> Theme Settings Now in the box labelled “Content Archives” select “Display Post Excerpts” from the drop down menu. Now make sure the “Include the Featured Image” box is checked and select your image size. Save … Read more

Custom Fields Code not echoing whats in the value field

I’m too new to be able to add a comment, but $post_id looks like it’s undefined. You’ll need to set it, one way is to grab it from the global $post object like so: add_action(‘genesis_after_header’, ‘mbr_after_header’); function mbr_after_header() { global $post; if ( is_singular( ‘post’ ) ) $cf = get_post_meta( $post->ID, ‘mbr_customfield’, true ); if(empty($cf)) … Read more

How to modify a title tag in genesis?

Try this to create your custom titles. remove_filter( ‘wp_title’, ‘genesis_default_title’, 10, 3 ); //Default title remove_action( ‘genesis_site_title’, ‘genesis_seo_site_title’ ); //Genesis Extra Stuff remove_action( ‘genesis_site_description’, ‘genesis_seo_site_description’ ); //Genesis Extra Stuff add_filter( ‘wp_title’, ‘genesis_default_title_new’, 10, 3 ); function genesis_default_title_new( $title) { $title=”Hello World!”; return $title; }

WordPress Hide Show Content script and activate/deactivate script on screensize

For the WordPress question, I’d create a shortcode. Something like: function expander_wpse_82811($atts,$content) { return ‘<div class=”expander”>’.$content.'</div>’; } add_shortcode(‘expander_wpse_82811′,’expand’); Which your editors would use like: [expand]Aliquam aliquet, est a ullamcorper condimentum… [/expand] http://codex.wordpress.org/Function_Reference/add_shortcode

Custom Blog Post Listing in Genesis Sample Child Theme

You are going about this pretty much all wrong. You should read the instructions before continuing. An Introduction to Child Themes An Introduction to Hooks in the Genesis Framework for WordPress The second code you provided can be rewritten as this: // Template Name: Page Template genesis(); That’s it. Genesis takes care of all that … Read more

Including Custom Post Type posts in a page template contextually (or should I widget?)

Custom Archive Page What you’re describing is a custom archive page. https://www.google.com/search?q=custom+archive+page https://codex.wordpress.org/Creating_an_Archive_Index Child Theme Forget widgetised areas. They’re not necessary based on what you described. Simply fork (copy and manipulate) your archives template page by using using a child theme rather than directly editing the parent theme (edits won’t survive theme updates). https://codex.wordpress.org/Child_Themes Featured … Read more