• Hello,
    We’re trying to create a feed for sending newsletters.

    We use this code that you sent on this forum:

    add_action("init", "my_init", 20);
    function my_init() {
        remove_action('template_redirect', 'adverts_disable_default_archive');
        add_action('template_redirect', 'my_disable_default_archive');
    }
    function my_disable_default_archive() {
        if(is_post_type_archive( "advert" ) && ! is_feed()) {
            wp_redirect( get_permalink( adverts_config( "ads_list_id" ) ) );
            exit;
        }
    }

    But we have two problems:
    1. Images don’t appear
    2. We need to show the feed by category.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘RSS Feed’ is closed to new replies.