Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bschatz

    (@bschatz)

    Just wanted to bump this to see if anyone can help – thanks : )

    Bryan

    Hi Bryan,

    1) To match the title styling (CSS)

    add following css to your child theme css:

    .entry-header .entry-title {
    font-size: 24pt !important;
    color: #0065a1 !important;
    font-weight: bold !important;
    }

    2) to add the meta, you need to edit the single.php file and add the following code to display post meta, may be possible you are including the content.php (or similar0 file to the single.php file, in that case you need to add this code there.

    You need to find the title code and add this code below:

    to show the date you may use this:

    <?php the_date(); ?>

    and for Author use this code:

    <?php the_author(); ?>

    So it would be something like this :

    <?php the_date(); ?> | <?php the_author(); ?>

    Please try and let me know for any help.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Style entry title and meta on single post page to match latest posts page’ is closed to new replies.