Display Featured Image

Like @jdm2112, I’m not a Gensis user, but here is an alternative method to retrieving the featured image. I use this method because it offers more functionality to altering the featured image (ie: thumbnail size). You can add these functions to your functions.php file. public function get_featured_image_id() { return (int) $this->get_meta( ‘_thumbnail_id’ ); } /** … Read more

How to display post title on top of image with Genesis Featured Posts

when blog section comes from posts then check the content.php in active particular theme. and modify the html code <?php if ( is_single() ) : ?> <h1 class=”entry-title”><?php the_title(); ?></h1> <?php else : ?> <h1 class=”entry-title”> <a href=”https://wordpress.stackexchange.com/questions/195188/<?php the_permalink(); ?>” rel=”bookmark”><?php the_post_thumbnail(); ?><?php the_title(); ?></a> </h1> <?php endif; // is_single() ?> <div class=”entry-meta”> <?php twentythirteen_entry_meta(); … Read more

Why is my hamburger menu not shown? [closed]

The hamburger is shown with ionicons as an after element. You have conflicting CSS in your theme. This (specifically, the content: ” “;) CSS: .entry:before, .entry-content:before, .nav-primary:before, .site-container:before, .site-header:before, .site-inner:before, .wrap:before { content: ” “; display: table; } is overwriting the hamburger menu’s CSS @media only screen and (max-width: 800px){ .menu-toggle:before, .menu-toggle.activated:before { color: #1e1e1e; … Read more