• Resolved dukearmi

    (@dukearmi)


    Hi there,

    Is it possible to move the post title (and meta?) below the featured image in category and author archives ?

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

    (@yingscarlett)

    Hi there,

    try this:

    add_action('wp', function() {
        if (is_category() || is_author() ) {
            remove_action( 'generate_after_entry_header', 'generate_post_image' );
            add_action( 'generate_before_content', 'generate_post_image' );
        }
    });
    Thread Starter dukearmi

    (@dukearmi)

    Awesome! Thank you.

    ying

    (@yingscarlett)

    No Problem ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move Post Title below Featured Image in Archives’ is closed to new replies.