• Hi,

    Example post: https://alexkooblog.com/glory-is-the-goal/

    I’m trying to move the blog post title (in this case: Glory is the Goal) down, and move post description “date and author” as well as the Comments button, up.

    Basically, I want the order of the post to be:
    1. Post Description & Comments
    2. Previous and Next Post
    3. Title

    How and where do I find the place to edit this? Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter AlexKooBlog

    (@alexkooblog)

    Bump. So I think it may look something like this

    function childtheme_override_postheader() {
        global $post;
    
        if ( is_404() || $post->post_type == 'page') {
           $postheader = thematic_postheader_posttitle();
        } else {
           $postheader = thematic_postheader_postmeta() . thematic_postheader_posttitle();
        }
    
        echo apply_filters( 'thematic_postheader', $postheader ); // Filter to override default post header
    }

    but I found this from a different theme. I’m using genesis so I’d have to plug in my terms, which I think are

    genesis_entry_header
    genesis_post_info
    genesis_post_meta

    I’m not exactly sure what to plug and chug though. Please help, thanks!

    [ No bumping please. ]

Viewing 1 replies (of 1 total)
  • The topic ‘Move Post Title Location?’ is closed to new replies.