• I would like to move the date stamp below the post, can anyone help me with this? I don’t see where it is possible. I know how to completely remove it, but I can’t seem to find how to move the placement of it. Thanks!

Viewing 1 replies (of 1 total)
  • First remove the date entry

    function remove_highwind_post_date(){
    remove_action( 'highwind_content_header_top', 'highwind_post_date', 10 );
    }
    add_action('init','remove_highwind_post_date');

    Afterwards add the wished placement e.g.:

    add_action( 'highwind_entry_bottom', 'highwind_post_date', 10 );

    Both code blocks are to be entered at your child theme functions.php.

Viewing 1 replies (of 1 total)
  • The topic ‘Move Date Stamp’ is closed to new replies.