Genesis Style Selector causes PHP warning [closed]

This should remove the warning $selector = get_theme_support( ‘genesis-style-selector’ ); $wp_customize->add_control( ‘genesis_color_scheme’, array( ‘label’ => __( ‘Select Color Style’, ‘genesis’), ‘section’ => ‘genesis_color_scheme’, ‘settings’ => $this->get_field_name( ‘style_selection’ ), ‘type’ => ‘select’, ‘choices’ => array_merge( array( ” => __( ‘Default’, ‘genesis’ ) ), array_shift( $selector ) ), ) );

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

Genesis themes: how do alter the markup of post meta on archive pages? [closed]

Within your Executive Pro theme’s functions.php, you can add a function that filters the post info. In Genesis lib/functions/post.php, you’ll find a genesis_post_info() function, and one particular line in it is: $filtered = apply_filters( ‘genesis_post_info’, ‘[post_date] ‘ . __( ‘by’, ‘genesis’ ) . ‘ [post_author_posts_link] [post_comments] [post_edit]’ ); That means you can filter genesis_post_info, and … Read more