• I have a wordpress site 99% finished and ready for adding Posts, but my designer wants the look more clean moving the “Title” under the posts photos. In the link below, my top test post and the title called “Baby Kora”, this title needs to be moved down into the white box, where the text field is. This requires customization I need help on.

    Please review the existing site here

    The title will need to be moved inside the Post content. Here’s a second link and example of the CSS mockup showing the moving of the title inside the white boxe

    How do I rearrange my post’s content order – specifically to move the title?

    Is it possible to make a global site change moving the title?

    ( I’m fine with pasting in this extra code for every post I create inside the post box. Perhaps moving the PHP from one file into a new post? But I don’t know PHP and how to go about this. )

    If the only solution is cut and pasting PHP code, what is that code to “cut” from which file and paste into my post? I’m guessing the loop? But I’m not sure as I’m only educated in CSS editing not PHP. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • In the WordPress admin, go to Appearance > Editor. Assuming you are not using any page templates you need to edit your index.php file. Somewhere in that file you will find the WordPress loop.

    You should be able to find the following code:

    <h2 class="entry-title"><a href="<?php the_permalink()?>" title="Permalink to <php the_title();?>" rel="bookmark"><php the_title();?></a></h2>

    That needs to be moved further down the loop and placed directly after:

    <div id="text1">
    Thread Starter sullysul

    (@sullysul)

    Thanks for the feedback! The “entry-title” is not inside the index.php file. But I did a search and it’s found in the content-extentions.php file.

    // Create post title
    if (function_exists(‘childtheme_override_postheader_posttitle’)) {
    function thematic_postheader_posttitle() {
    return childtheme_override_postheader_posttitle();
    }
    } else {
    function thematic_postheader_posttitle() {

    if (is_single() || is_page()) {
    $posttitle = ‘<h1 class=”entry-title”>’ . get_the_title() . “</h1>\n”;
    } elseif (is_404()) {
    $posttitle = ‘<h1 class=”entry-title”>’ . __(‘Not Found’, ‘thematic’) . “</h1>\n”;
    } else {
    $posttitle = ‘<h2 class=”entry-title”><a href=”‘;
    $posttitle .= apply_filters(‘the_permalink’, get_permalink());
    $posttitle .= ‘” title=”‘;
    $posttitle .= __(‘Permalink to ‘, ‘thematic’) . the_title_attribute(‘echo=0’);
    $posttitle .= ‘” rel=”bookmark”>’;
    $posttitle .= get_the_title();
    $posttitle .= “</h2>\n”;
    }

    return apply_filters(‘thematic_postheader_posttitle’,$posttitle);

    }
    } // end postheader_posttitle

    Have any your thoughts about what to edit or move?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do rearrange the order of my Post content (moving TITLE into middle of Post)’ is closed to new replies.