• Resolved andresjacobowitz

    (@andresjacobowitz)


    I need to move the published date, time.entry-date.published which is inside of meta-entry so it will be last on the <article> tag with php, in the generate press theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • ying

    (@yingscarlett)

    Hi there,

    Try this snippet:

    add_action('wp',function() {
        remove_action('generate_after_entry_title','generate_post_meta');
        add_action('generate_after_entry_content', 'generate_post_meta');
    });
    Thread Starter andresjacobowitz

    (@andresjacobowitz)

    Thank you very much, that did it.

    ying

    (@yingscarlett)

    You are welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to move time.entry-date.published to the bottom, GeneratePress’ is closed to new replies.