• Skip to primary navigation
  • Skip to main content
  • Skip to footer

eric c wagner

ramblings, musings, and WordPress

  • About

Display Featured Image on top of Genesis Framework Posts

September 7, 2014 by Eric Wagner Leave a Comment

Here’s a snippet of code that I re-use often. It will display the post’s featured image above the content but under the entry title on the post page and the front page.

 
/* Display Featured Image on top of the post */ 
add_action( 'genesis_before_entry_content', 'featured_post_image', 8 ); 

function featured_post_image() { 
    if ( ! is_singular( 'post' ) && ! is_front_page() ) 
        return; the_post_thumbnail('post-image'); 
}

Filed Under: WordPress Tagged With: Genesis Framework

Removing Edit Link on Genesis Framework

July 19, 2014 by Eric Wagner Leave a Comment

Here’s how to remove the Edit link that appears at the bottom of posts and pages when using the Genesis Framework for WordPress.

//* Remove the edit link
add_filter ( 'genesis_edit_post_link' , '__return_false' );

Filed Under: WordPress Tagged With: Genesis Framework

Attending WordCamp Maine 2014

July 19, 2014 by Eric Wagner Leave a Comment

Filed Under: WordPress

Attending WordCamp NYC 2014

July 12, 2014 by Eric Wagner Leave a Comment

I’m Attending WordCamp NYC – August 2-3, 2014

Filed Under: WordPress

WordPress Body Home Styling

May 17, 2014 by Eric Wagner Leave a Comment

Here’s a tip (really a reminder for myself) to be able to style the home page differently from the other pages, for example having a special background color or image for the home page.

body { background-color: #000000; }

body.home { background-color: #ffffff; }

Filed Under: WordPress

MAMP Pages Not Refreshing Quickly

April 27, 2014 by Eric Wagner Leave a Comment

I finally got around to upgrading my MAMP install yesterday to PHP 5.5.3, and as I was working on a client’s website I began noticing that the pages I were working on weren’t seeing the code changes I just made. I’ve seen this before and it’s quite maddening. Luckily this time it coincided with my upgrade of PHP, so it was easier to track down.

[Read more…] about MAMP Pages Not Refreshing Quickly

Filed Under: Development Tagged With: MAMP

  • « Go to Previous Page
  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to page 4
  • Go to page 5
  • Go to Next Page »

Footer

Connect Online

  • LinkedIn
  • RSS
  • Twitter

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 3 other subscribers

Categories

  • Development
  • General
  • Joomla
  • Linux
  • Mental Note
  • Sales
  • Science
  • Tech Toys
  • Uncategorized
  • Web Hosting
  • WordPress

Tags

Amazon.com Apple Watch cache DigitalOcean Genesis Framework Infographic MAMP WordCamp Yoast

Website Design and Development

Copyright © 2023 · Eric Wagner