I got my ‘Page’ and ‘Blog List’ Page working.. But when i click on one of my Post… the Layout is different .. I want to edit it. Where can i find that?
I tried to edit it..
<?php
/*
WARNING: This file is part of the core Genesis framework. DO NOT edit
this file under any circumstances. Please do all modifications
in the form of a child theme.
*/
/**
* This file handles posts, but only exists for the sake of
* child theme forward compatibility.
*
* This file is a core Genesis file and should not be edited.
*
* @category Genesis
* @package Templates
* @author StudioPress
* @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)
* @link http://www.studiopress.com/themes/genesis
*/
genesis();
I guess this isnt the correct file to edit.. What should i do…
You edit the post page by using Genesis hooks (actions and / or filters). You can do this in the
functions.php
file or in a WordPress template file located in your child theme directory.If you use a template file, add the
genesis()
function call to the end of that file and you action and filters calls above it.For example, here is a
single.php
child theme file which changes the default Post Info (the byline) and the Post Meta (the categories, tags, etc. line) for a post.I used the post shortcode functions provided by Genesis in these functions.