It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://www.pigprogress.net/RSS/Feed/News-on-Global-Pig-Production/

  1. <!doctype html><html class="no-js" lang="en-US" ><head> <script type="text/javascript">
  2. /* <![CDATA[ */
  3. var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),gform.hooks[o][n].push({tag:i,callable:r,priority:t=null==t?10:t})},doHook:function(n,o,r){var t;if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[n][o]&&((o=gform.hooks[n][o]).sort(function(o,n){return o.priority-n.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==n?t.apply(null,r):r[0]=t.apply(null,r)})),"filter"==n)return r[0]},removeHook:function(o,n,t,i){var r;null!=gform.hooks[o][n]&&(r=(r=gform.hooks[o][n]).filter(function(o,n,r){return!!(null!=i&&i!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][n]=r)}});
  4. /* ]]> */
  5. </script>
  6. <meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /> <script>window['mst_global_context'] = {"content":{"type":"overview"},"user":{"is_logged_in":false,"is_sso_user":false,"missetid_id":null}};</script><script>if (localStorage.getItem("mso_user_profile") !== null) {
  7.    window['mst_global_context']['user'] = JSON.parse(localStorage.getItem('mso_user_profile'));
  8. }</script><meta name='robots' content='noindex, follow' /> <script>function freaveResetCookies(version) {
  9.  
  10.  if (!version) {
  11.    console.error('Called freaveResetCookies without version number.');
  12.    return;
  13.  }
  14.  
  15.  const resetCookieName = 'cookiereset';
  16.  const resetCookieExpiresDate = new Date();
  17.  const time = resetCookieExpiresDate.getTime();
  18.  const expireTime = time + 360*24*60*60*1000; // in 360 days
  19.  resetCookieExpiresDate.setTime(expireTime);
  20.  
  21.  const resetCookiePattern = new RegExp('(?:^|;)\\s*?' + resetCookieName + '=([^;])*', 'i');
  22.  
  23.  const cookieKeepPatterns = [
  24.    'AWSELB',
  25.    'ASP.NET_SessionId',
  26.    'PHPSESSID',
  27.    'wordpress_',
  28.    'wp-',
  29.    'wp_',
  30.    'gate_',
  31.  ].map(namePrefix => new RegExp('(?:^|;)\\s*?' + namePrefix + '[^=]*=(?:[^;])*', 'i'));
  32.  
  33.  const resetCookieProperties = {
  34.    'samesite': 'Strict',
  35.    'path': '/',
  36.    'expires': resetCookieExpiresDate.toUTCString(),
  37.  }
  38.  
  39.  const expireCookieProperties = {
  40.    'samesite': 'Strict',
  41.    'path': '/',
  42.    'expires': "Thu, 01 Jan 1970 00:00:01 GMT",
  43.  }
  44.  
  45.  const resetCookie = document.cookie.match(resetCookiePattern);
  46.  if (!resetCookie || Number(resetCookie[1]) < Number(version)) {
  47.    resetCookies();
  48.  }
  49.  
  50.  function resetCookies() {
  51.  
  52.    const domains = getDomains();
  53.    const allCookies = document.cookie.split(';');
  54.  
  55.    for (const cookie of allCookies) {
  56.      if (cookieKeepPatterns.some(pattern => pattern.test(cookie))) {
  57.        continue;
  58.      }
  59.      const [name, value] = cookie.split('=').map(part => part.trim());
  60.      const expireAttributes = Object.entries(expireCookieProperties)
  61.        .map(([key, value]) => `${key}=${value}`).join('; ');
  62.      for (const domain of domains) {
  63.        document.cookie = `${name}=${value};${expireAttributes};domain=${domain}`;
  64.      }
  65.      // also reset for the current exact domain by omitting the domain attribute
  66.      document.cookie = `${name}=${value};${expireAttributes}`;
  67.    }
  68.  
  69.    document.cookie = `${resetCookieName}=${version};${Object.entries(resetCookieProperties)
  70.      .map(([key, value]) => `${key}=${value}`).join('; ')};domain=${domains[0]}`;
  71.  }
  72.  
  73.  /**
  74.   * Get list of domains to reset cookies on.
  75.   * @returns {string[]}
  76.   */
  77.  function getDomains() {
  78.    const hostnameParts = window.location.hostname.split('.');
  79.    const domains = [
  80.      hostnameParts.join('.'),
  81.    ];
  82.    for (let i = hostnameParts.length; i >= 2; i--) {
  83.      domains.push(hostnameParts.slice(-i).join('.'));
  84.    }
  85.    if (hostnameParts[0] === 'www') {
  86.      domains.unshift(hostnameParts.slice(1).join('.'));
  87.    }
  88.    return domains;
  89.  }
  90. }
  91. ;window.freaveResetCookies(2);</script><script src="https://cdn.priv.center/pc/assets/scripts/stub.js"></script><script>window.dataLayer = window.dataLayer || [];
  92. window.googletag = window.googletag || {cmd: []};
  93.  
  94. function getAdUnitSection() {
  95.    {
  96.        const parentCategoryMapping = {
  97.    'specials': 'Specials',
  98. };
  99.  
  100. const categories = mst_global_context.content.categories;
  101. for (let categoryIndex in mst_global_context.content.categories) {
  102.    let category = mst_global_context.content.categories[categoryIndex];
  103.  
  104.    if (mst_global_context.content.type === 'topic') {
  105.        return 'Specials';
  106.    }
  107.    if (category.hasOwnProperty('parent') && parentCategoryMapping.hasOwnProperty(category.parent.slug)) {
  108.        return category.parent.slug;
  109.    }
  110.  
  111.    return category.name;
  112. }
  113.  
  114. return 'Home';
  115.    }
  116. }
  117.  
  118. const contentSection = getAdUnitSection();
  119.  
  120. var AD_UNIT_SECTION = contentSection || 'Home';
  121.  
  122. var AD_UNIT_PATH = `/21805559310/pigprogress.net/${AD_UNIT_SECTION}`;
  123.  
  124. var IS_ARTICLE = mst_global_context.content.type !== 'overview';
  125.  
  126. /**
  127. * When the Civic UK cookie plugin is installed we'll check it to make sure we've got permission to set cookies.
  128. * If the plugin is not enabled we'll fallback to not having consent.
  129. *
  130. * @see https://www.civicuk.com/cookie-control/documentation
  131. *
  132. * @type {*|boolean}
  133. */
  134.  
  135. function initializeAds() {
  136.  
  137.    /**
  138.     * INITIALIZE
  139.     *---------------------------------------------------------------------- */
  140.    googletag.cmd.push(function () {
  141.  
  142.        var TAGS = {
  143.            'BillboardTop': {
  144.                sizes: [[970, 250], [970, 90], [728, 90], [468, 60], [320, 240], [320, 100]], // Sizes for this slot
  145.                onOverview: true, // Show on Overview page?
  146.                onArticle: true   // Show on Article page?
  147.            },
  148.            'Billboard2nd': {
  149.                sizes: [[728, 91], [468, 61], [320, 101]],
  150.                onOverview: true,
  151.                onArticle: true
  152.            },
  153.            'RectangleTop': {
  154.                sizes: [[336, 600], [300, 600], [160, 600], [336, 280], [300, 250]],
  155.                onOverview: true,
  156.                onArticle: true
  157.            },
  158.            'Rectangle2nd': {
  159.                sizes: [[336, 281], [300, 251]],
  160.                onOverview: true,
  161.                onArticle: true
  162.            },
  163.            'InArticle': {
  164.                sizes: [[610, 340], [468, 61]],
  165.                onOverview: true,
  166.                onArticle: true
  167.            },
  168.            'OutOfPage': {
  169.                sizes: [],
  170.                onOverview: true,
  171.                onArticle: true
  172.            },
  173.            'MobileAfterIntro': {
  174.                sizes: [[320, 241]],
  175.                onOverview: false,
  176.                onArticle: true
  177.            }
  178.        };
  179.  
  180.        /**
  181.         * Setup your SIZE MAPS: EDIT THESE
  182.         * - TAGS['<name>'] should be EXACTLY as above
  183.         *---------------------------------------------------------------------- */
  184.  
  185.        /* BillboardTop SizeMap */
  186.        TAGS['BillboardTop'].map = googletag.sizeMapping()
  187.            .addSize([1000, 10], [[970, 250], [970, 90], [728, 90]])
  188.    .addSize([768, 10], [[728, 90], [468, 60]])
  189.            .addSize([320, 10], [[320, 240], [320, 100]])
  190.            .addSize([0, 0], [])
  191.            .build();
  192.  
  193.        /* Billboard2nd SizeMap */
  194.        TAGS['Billboard2nd'].map = googletag.sizeMapping()
  195.    .addSize([768, 10], [[728, 91], [468, 61]])
  196.            .addSize([320, 10], [320, 101])
  197.            .addSize([0, 0], [])
  198.            .build();
  199.  
  200.        /* RectangleTop SizeMap */
  201.        TAGS['RectangleTop'].map = googletag.sizeMapping()
  202.            .addSize([1200, 10], [[336, 600], [300, 600], [160, 600], [336, 280]])
  203.    .addSize([1000, 10], [[300, 600], [160, 600], [300, 250]])
  204.            .addSize([768, 10], [])
  205.            .addSize([320, 10], [])
  206.            .addSize([0, 0], [])
  207.            .build();
  208.  
  209.        /* Rectangle2nd SizeMap */
  210.        TAGS['Rectangle2nd'].map = googletag.sizeMapping()
  211.            .addSize([1200, 10], [336, 281])
  212.    .addSize([1000, 10], [300, 251])
  213.    .addSize([768, 10], [])
  214.            .addSize([320, 10], [])
  215.            .addSize([0, 0], [])
  216.            .build();
  217.  
  218.        /* InArticle SizeMap */
  219.        TAGS['InArticle'].map = googletag.sizeMapping()
  220.            .addSize([1000, 10],[610, 340])
  221.    .addSize([768, 10], [468, 61])
  222.            .addSize([320, 10], [])
  223.            .addSize([0, 0], [])
  224.            .build();
  225.  
  226.        /* MobileAfterIntro SizeMap */
  227.        TAGS['MobileAfterIntro'].map = googletag.sizeMapping()
  228.    .addSize([768, 10], [])
  229.            .addSize([320, 10], [320, 241])
  230.            .addSize([0, 0], [])
  231.            .build();
  232.  
  233.        /**
  234.         * Build SLOTS from TAGS: DO NOT EDIT!
  235.         *---------------------------------------------------------------------- */
  236.        for (slotKey in TAGS) {
  237.  
  238.            var _slot = TAGS[slotKey];
  239.  
  240.            /* NOTE: Exception for OutOfPage! */
  241.            if (slotKey === 'OutOfPage') {
  242.                /* Tag: OutOfPageSlot: show everywhere */
  243.                _slot.slot = googletag
  244.                  .defineOutOfPageSlot(AD_UNIT_PATH, slotKey)
  245.                  .addService(googletag.pubads());
  246.            } else {
  247.                /* Generic Slot: check Article/Overview/Both */
  248.                if (
  249.                  (_slot.onOverview && _slot.onArticle) ||
  250.                  (_slot.onArticle && IS_ARTICLE) ||
  251.                  (_slot.onOverview && !IS_ARTICLE)
  252.                ) {
  253.                    _slot.slot = googletag
  254.                      .defineSlot(AD_UNIT_PATH, _slot.sizes, slotKey)
  255.                      .defineSizeMapping(_slot.map)
  256.                      .addService(googletag.pubads());
  257.                }
  258.            }
  259.        }
  260.        ;
  261.  
  262.        /**
  263.         * TARGETING ETC
  264.         *---------------------------------------------------------------------- */
  265.        // // Apply generic targetting to all slots
  266.        googletag.pubads().setTargeting('content_type', mst_global_context.content.type);
  267.  
  268.        var context = mst_global_context;
  269.  
  270.        if (context.content.type === 'post') {
  271.            googletag.pubads().setTargeting('content_premium', mst_global_context.content.is_premium ? 'premium' : 'not-premium');
  272.        } else {
  273.            googletag.pubads().setTargeting('content_premium', 'not-premium');
  274.        }
  275.  
  276.        if (['post', 'tractor', 'brand', 'review', 'case', 'market-analysis'].includes(context.content.type)) {
  277.            if (context.content.cs_id) {
  278.                googletag.pubads().setTargeting('cs_id', context.content.cs_id.toString());
  279.            }
  280.            googletag.pubads().setTargeting('page_id', context.content.id.toString());
  281.            googletag.pubads().setTargeting('post_tags', context.content.tags.toString());
  282.  
  283.            if (context.content.hasOwnProperty('categories')) {
  284.                let categorySlugs = [];
  285.  
  286.                context.content.categories.forEach(function (category, index) {
  287.                    this[index] = category['slug'];
  288.                }, categorySlugs);
  289.  
  290.                googletag.pubads().setTargeting('categories', categorySlugs.join(', '));
  291.            }
  292.        }
  293.  
  294.        if (context.content.hasOwnProperty('id')) {
  295.            googletag.pubads().setTargeting('content_id', context.content.id.toString());
  296.        }
  297.  
  298.        if (context.content.type === 'topic') {
  299.            googletag.pubads().setTargeting('page_id', context.content.id.toString());
  300.        }
  301.  
  302.        if (context.user) {
  303.            googletag.pubads().setTargeting('loggedin', context.user.is_logged_in ? 'user-logged-in' : 'user-not-logged-in');
  304.        }
  305.  
  306.        googletag.pubads().enableSingleRequest();
  307.  
  308.        /* NOTE: Disable when Lazy Loading? */
  309.        googletag.pubads().collapseEmptyDivs();
  310.  
  311.        googletag.enableServices();
  312.    });
  313. }
  314.  
  315. /**
  316. * Functions to assist in rendering the specials ads.
  317. *
  318. * @type {{defineSpecialsSlots: allaboutfeedSpecials.defineSpecialsSlots, isSpecial: allaboutfeedSpecials.isSpecial, renderSidebar: allaboutfeedSpecials.renderSidebar}}
  319. */
  320. const allaboutfeedSpecials = {
  321.    isSpecial: function () {
  322.        if (!mst_global_context.hasOwnProperty('content') || !mst_global_context.content.hasOwnProperty('categories')) {
  323.            return false;
  324.        }
  325.  
  326.        if (mst_global_context.content.type === 'topic') {
  327.            return true;
  328.        }
  329.  
  330.        let categories = mst_global_context.content.categories;
  331.  
  332.        for (let categoryIndex in categories) {
  333.            let category = categories[categoryIndex];
  334.            if (category.slug === 'specials') {
  335.                return true;
  336.            }
  337.        }
  338.  
  339.        return false;
  340.    },
  341.  
  342.    defineSpecialsSlots: function () {
  343.        if (!allaboutfeedSpecials.isSpecial()) {
  344.            return;
  345.        }
  346.  
  347.        googletag.cmd.push(function () {
  348.  
  349.            for (var i = 1; i <= 20; i++) {
  350.                var slotId = 'div-gpt-ad-1456153210814-' + i.toString();
  351.  
  352.                var sizeMapping = googletag.sizeMapping().addSize([0, 0], [336, 140]).build();
  353.  
  354.                googletag
  355.                    .defineSlot("/21805559310/pigprogress.net", [[336, 140]], slotId)
  356.                    .setTargeting('pos', [i.toString()])
  357.                    .defineSizeMapping(sizeMapping)
  358.                    .addService(googletag.pubads());
  359.            }
  360.        })
  361.    },
  362.  
  363.    renderSidebar: function () {
  364.        if (!allaboutfeedSpecials.isSpecial()) {
  365.            return;
  366.        }
  367.  
  368.        for (var i = 1; i <= 20; i++) {
  369.            let script = "<div id='div-gpt-ad-1456153210814-" + i + "'>\n";
  370.            script += "<script>\n";
  371.            script += "googletag.cmd.push(function() {\n";
  372.            script += "googletag.display(\"div-gpt-ad-1456153210814-" + i + "\");\n";
  373.            script += "});\n";
  374.            script += "\<\/script\>";
  375.            script += "</div><br>";
  376.            document.write(script);
  377.        }
  378.    },
  379.  
  380.    callback: function () {
  381.        initializeAds();
  382.    }
  383. };
  384.  
  385. window['allaboutfeedSpecials'] = allaboutfeedSpecials;
  386.  
  387. allaboutfeedSpecials.defineSpecialsSlots();
  388.  
  389. /**
  390. * Shortcut function, mostly used in Trekker
  391. *
  392. *---------------------------------------------------------------------- */
  393. function displayGPT(slotName) {
  394.    if (!slotName) return;
  395.    googletag.cmd.push(function () {
  396.        googletag.display(slotName);
  397.    });
  398. }
  399.  
  400. function gtag() {
  401.    dataLayer.push(arguments);
  402. }
  403.  
  404. // set „denied' as default for both ad and analytics storage,
  405. gtag("consent", "default", {
  406.    ad_storage: "denied",
  407.    ad_user_data: "denied",
  408.    ad_personalization: "denied",
  409.    analytics_storage: "denied",
  410.    preferences: "denied",
  411.    social_content: "denied",
  412.    social_sharing: "denied",
  413.    wait_for_update: 500, // milliseconds to wait for update
  414. });
  415.  
  416. // Enable ads data redaction by default [optional]
  417. gtag("set", "ads_data_redaction", true);
  418.  
  419. (function (w, d, s, l, i) {
  420.    w[l] = w[l] || [];
  421.    w[l].push({
  422.        'gtm.start':
  423.            new Date().getTime(), event: 'gtm.js'
  424.    });
  425.    var f = d.getElementsByTagName(s)[0],
  426.        j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
  427.    j.async = true;
  428.    j.src =
  429.        'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
  430.    f.parentNode.insertBefore(j, f);
  431. })(window, document, 'script', 'dataLayer', 'GTM-PNM6FKT');
  432.  
  433. initializeAds();</script><script type='text/plain' truendo='true' data-trucookiecontrol='marketing'>/**
  434. * Dynamically loads either the limited or the full GPT script. Depending
  435. * on whether the user has consented to cookies. The pagead2 domain name is
  436. * supposed to be cookieless.
  437. * @see https://developers.google.com/publisher-tag/guides/get-started
  438. * @see https://developers.google.com/publisher-tag/guides/general-best-practices
  439. */
  440.  
  441. let gptScript = document.createElement('script');
  442. gptScript.src = 'https://securepubads.g.doubleclick.net/tag/js/gpt.js';
  443. document.getElementsByTagName('head')[0].appendChild(gptScript);</script> <link media="all" href="https://www.pigprogress.net/app/cache/autoptimize/css/autoptimize_6dac9f209ebbb1de61c909fa34040262.css" rel="stylesheet"><title>Page not found - Pig Progress</title><meta property="og:locale" content="en_US" /><meta property="og:title" content="Page not found - Pig Progress" /><meta property="og:site_name" content="Pig Progress" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.pigprogress.net/#website","url":"https://www.pigprogress.net/","name":"Pig Progress","description":"Gateway to the world of pig production","publisher":{"@id":"https://www.pigprogress.net/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.pigprogress.net/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.pigprogress.net/#organization","name":"Pig Progress","url":"https://www.pigprogress.net/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.pigprogress.net/#/schema/logo/image/","url":"https://www.pigprogress.net/app/uploads/2021/03/Logo-PPR-01.png","contentUrl":"https://www.pigprogress.net/app/uploads/2021/03/Logo-PPR-01.png","width":727,"height":77,"caption":"Pig Progress"},"image":{"@id":"https://www.pigprogress.net/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/PigProgress","https://twitter.com/PigProgress","https://www.instagram.com/pigprogress/","https://www.linkedin.com/company/pigprogress/"]}]}</script> <link rel='dns-prefetch' href='//static.addtoany.com' /><link rel='dns-prefetch' href='//www.pigprogress.net' /><link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' /><link rel='stylesheet' id='font-awesome-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' type='text/css' media='all' /> <script type="text/javascript" id="addtoany-core-js-before">window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};
  444. a2a_config.icon_color="#2a2a2a,#ffffff";</script> <script type="text/javascript" async src="https://static.addtoany.com/menu/page.js" id="addtoany-core-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/app/themes/wp-lite/src/js/vendor/jquery/jquery.min.js" id="jquery-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/app/plugins/responsive-lightbox/assets/swipebox/jquery.swipebox.min.js" id="responsive-lightbox-swipebox-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/underscore.min.js" id="underscore-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/app/plugins/responsive-lightbox/assets/infinitescroll/infinite-scroll.pkgd.min.js" id="responsive-lightbox-infinite-scroll-js"></script> <script type="text/javascript" id="responsive-lightbox-js-before">var rlArgs = {"script":"swipebox","selector":"lightbox","customEvents":"","activeGalleries":true,"animation":true,"hideCloseButtonOnMobile":false,"removeBarsOnMobile":false,"hideBars":true,"hideBarsDelay":5000,"videoMaxWidth":1080,"useSVG":true,"loopAtEnd":false,"woocommerce_gallery":false,"ajaxurl":"https:\/\/www.pigprogress.net\/wp\/wp-admin\/admin-ajax.php","nonce":"639d2784f9","preview":false,"postId":0,"scriptExtension":false};</script> <script type="text/javascript" src="https://www.pigprogress.net/app/plugins/responsive-lightbox/js/front.js" id="responsive-lightbox-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/app/plugins/wp-photo-player/js/photoplayer.js" id="photoplayer-js"></script> <script>var mst_entitlement_context = {"errors":[],"user":{"logged_in":false},"entitlement":{"entitled":false}};</script> <script defer data-domain="www.pigprogress.net,universal" src="https://beacon.freaveinsights.com/js/beacon.js"></script> <script>window.plausible = window.plausible || function () {
  445.                (window.plausible.q = window.plausible.q || []).push(arguments)
  446.            }</script> <link rel="icon" href="https://www.pigprogress.net/app/uploads/2021/03/PPR-favicon-150x150.png" sizes="32x32" /><link rel="icon" href="https://www.pigprogress.net/app/uploads/2021/03/PPR-favicon.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://www.pigprogress.net/app/uploads/2021/03/PPR-favicon.png" /><meta name="msapplication-TileImage" content="https://www.pigprogress.net/app/uploads/2021/03/PPR-favicon.png" /></head><body class="error404 wp-custom-logo"><div class="off-canvas position-right" id="offCanvasRight" data-off-canvas> <button class="close-button" aria-label="Close menu" type="button" data-close> <span aria-hidden="true">&times;</span> </button><ul id="menu-mobile-menu" class="menu" data-responsive-menu="accordion medium-dropdown" data-multi-open="false"><li id="menu-item-26554" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children has-dropdown menu-item-26554"><a href="https://www.pigprogress.net/pigs/"><span>Pigs</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-26562" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26562"><a href="https://www.pigprogress.net/pigs/genetics/"><span>Genetics</span></a></li><li id="menu-item-26556" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26556"><a href="https://www.pigprogress.net/pigs/sowsboars/"><span>Sows &amp; Boars</span></a></li><li id="menu-item-26558" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26558"><a href="https://www.pigprogress.net/pigs/piglets/"><span>Piglets</span></a></li><li id="menu-item-26555" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26555"><a href="https://www.pigprogress.net/pigs/finishers/"><span>Finishers</span></a></li><li id="menu-item-26557" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26557"><a href="https://www.pigprogress.net/pigs/processing/"><span>Processing</span></a></li></ul></li><li id="menu-item-26563" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children has-dropdown menu-item-26563"><a href="https://www.pigprogress.net/industry-and-markets/"><span>Industry &amp; markets</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-26564" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26564"><a href="https://www.pigprogress.net/industry-and-markets/market-trends-analysis/"><span>Market trends / analysis</span></a></li></ul></li><li id="menu-item-26559" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children has-dropdown menu-item-26559"><a href="https://www.pigprogress.net/health-nutrition/"><span>Health/Nutrition</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-26577" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26577"><a href="https://www.pigprogress.net/health-tool/"><span>Health Tool</span></a></li><li id="menu-item-26566" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26566"><a href="https://www.pigprogress.net/dossier/african-swine-fever/"><span>African Swine Fever (ASF)</span></a></li><li id="menu-item-26560" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26560"><a href="https://www.pigprogress.net/health-nutrition/health/"><span>Health</span></a></li><li id="menu-item-26565" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26565"><a href="https://www.pigprogress.net/health-nutrition/nutrition/"><span>Nutrition</span></a></li></ul></li><li id="menu-item-26561" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children has-dropdown menu-item-26561"><a href="https://www.pigprogress.net/world-of-pigs/"><span>World of Pigs</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-26569" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26569"><a href="https://www.pigprogress.net/world-of-pigs/farm-visits/"><span>Farm visits</span></a></li><li id="menu-item-26568" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-26568"><a href="https://www.pigprogress.net/world-of-pigs/country-focus/"><span>Country focus</span></a></li><li id="menu-item-26571" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26571"><a href="https://www.pigprogress.net/dossier/global-pig-statistics/"><span>Global pig statistics</span></a></li><li id="menu-item-26570" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26570"><a href="https://www.pigprogress.net/dossier/best-practices/"><span>Best practices</span></a></li></ul></li><li id="menu-item-26573" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26573"><a href="https://www.pigprogress.net/digital-magazine/"><span>Digital magazine</span></a></li><li id="menu-item-26575" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26575"><a href="https://www.pigprogress.net/dossier/webinars/"><span>Webinars</span></a></li><li id="menu-item-26576" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26576"><a href="https://www.pigprogress.net/dossier/podcasts/"><span>Podcasts</span></a></li><li id="menu-item-26572" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26572"><a href="https://www.pigprogress.net/our-sites/"><span>Our sites</span></a></li><li id="menu-item-26574" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26574"><a href="https://www.pigprogress.net/newsletter/"><span>#202 (no title)</span></a></li></ul></div><div class="off-canvas-content" data-off-canvas-content><header id="header-wrap" class="site-header"><div class="outer-top-bar-section"><div class="top-bar-section burger"><div class="grid-container"><div class="flex-container align-right"><ul class="show-for-small-only"><li> <a class="button blue" href="?auth=sso" target="_self">Login/register</a></li></ul><ul id="menu-top-menu" class="align-center" data-responsive-menu="" ><li id="menu-item-29796" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29796"><a href="https://www.pigprogress.net/podcasts/" class="button blue"><span>Podcasts</span></a></li><li id="menu-item-459" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-459"><a href="https://www.pigprogress.net/dossier/webinars/" class="button blue"><span>Webinars</span></a></li><li id="menu-item-207" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-207"><a href="https://www.pigprogress.net/digital-magazine/" class="button blue"><span>Digital magazine</span></a></li><li id="menu-item-206" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-206"><a href="https://www.pigprogress.net/newsletter/" class="button blue"><span>Newsletter</span></a></li><li id="menu-item-36730" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-36730"><a href="https://subscription.pigprogress.net" class="button blue"><span>Subscribe</span></a></li><li class="hide-for-small-only"><a href="/?auth=sso" class=""><img src="https://www.pigprogress.net/app/themes/wp-lite-child/images/user-black.png" alt=""></a></li></ul></div></div></div><div class="menu-wrapper"><div class="grid-container"><nav class="top-bar" data-topbar role="navigation"><div class="top-bar-left"><ul class=""><li class="name"> <a href="https://www.pigprogress.net" class="logo"> <img src="https://www.pigprogress.net/app/uploads/2021/03/Logo-PPR-01.png" alt="Pig Progress" /> </a></li></ul></div><div class="top-bar-right flex-container align-middle"><ul id="menu-main-menu" class="menu hide-for-small-only" data-responsive-menu="drilldown medium-dropdown" ><li id="menu-item-19012" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children has-dropdown menu-item-19012"><a href="https://www.pigprogress.net/pigs/"><span>Pigs</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-19029" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19029"><a href="https://www.pigprogress.net/pigs/genetics/"><span>Genetics</span></a></li><li id="menu-item-19023" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19023"><a href="https://www.pigprogress.net/pigs/sowsboars/"><span>Sows &amp; Boars</span></a></li><li id="menu-item-19026" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19026"><a href="https://www.pigprogress.net/pigs/piglets/"><span>Piglets</span></a></li><li id="menu-item-19022" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19022"><a href="https://www.pigprogress.net/pigs/finishers/"><span>Finishers</span></a></li><li id="menu-item-19025" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19025"><a href="https://www.pigprogress.net/pigs/processing/"><span>Processing</span></a></li></ul></li><li id="menu-item-26634" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-has-children has-dropdown menu-item-26634"><a href="https://www.pigprogress.net/dossier/health-nutrition/"><span>Health/Nutrition</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-25351" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-25351"><a href="https://www.pigprogress.net/health-tool/"><span>Health Tool</span></a></li><li id="menu-item-19748" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-19748"><a href="https://www.pigprogress.net/dossier/african-swine-fever/"><span>African Swine Fever (ASF)</span></a></li><li id="menu-item-19047" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19047"><a href="https://www.pigprogress.net/health-nutrition/health/"><span>Health</span></a></li><li id="menu-item-19048" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19048"><a href="https://www.pigprogress.net/health-nutrition/nutrition/"><span>Nutrition</span></a></li></ul></li><li id="menu-item-19011" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children has-dropdown menu-item-19011"><a href="https://www.pigprogress.net/industry-and-markets/"><span>Markets</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-19042" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-19042"><a href="https://www.pigprogress.net/industry-and-markets/market-trends-analysis/"><span>Market trends / analysis</span></a></li><li id="menu-item-19761" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-19761"><a href="https://www.pigprogress.net/dossier/global-pig-statistics/"><span>Global pig statistics</span></a></li><li id="menu-item-26707" class="menu-item menu-item-type-post_type menu-item-object-topic menu-item-26707"><a href="https://www.pigprogress.net/topic/interviews-pig-production-sector/"><span>Interviews</span></a></li><li id="menu-item-26706" class="menu-item menu-item-type-post_type menu-item-object-topic menu-item-26706"><a href="https://www.pigprogress.net/topic/pig-production-experts-talk/"><span>Expert opinions</span></a></li></ul></li><li id="menu-item-26650" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-has-children has-dropdown menu-item-26650"><a href="https://www.pigprogress.net/dossier/world-of-pigs/"><span>World of Pigs</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-25461" class="menu-item menu-item-type-post_type menu-item-object-topic menu-item-25461"><a href="https://www.pigprogress.net/topic/farm-visits/"><span>Farm visits</span></a></li><li id="menu-item-25460" class="menu-item menu-item-type-post_type menu-item-object-topic menu-item-25460"><a href="https://www.pigprogress.net/topic/country-focus/"><span>Country focus</span></a></li><li id="menu-item-19760" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-19760"><a href="https://www.pigprogress.net/dossier/best-practices/"><span>Best practices</span></a></li><li id="menu-item-26653" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26653"><a href="https://www.pigprogress.net/dossier/special-focus-within-the-pig-sector/"><span>Special editions</span></a></li></ul></li><li id="menu-item-27047" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children has-dropdown menu-item-27047"><a href="https://www.pigprogress.net/our-sites/"><span>Our sites</span></a><ul class="dropdown menu vertical" data-dropdown-menu><li id="menu-item-27048" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-27048"><a href="https://www.allaboutfeed.net"><span>All About Feed</span></a></li><li id="menu-item-27049" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-27049"><a href="https://www.poultryworld.net"><span>Poultry World</span></a></li><li id="menu-item-27050" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-27050"><a href="https://www.dairyglobal.net"><span>Dairy Global</span></a></li><li id="menu-item-27051" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-27051"><a href="https://www.futurefarming.com"><span>Future Farming</span></a></li></ul></li></ul><div class="search-wrap"> <a data-toggle="search_form" class="search-tottle"> <img src="https://www.pigprogress.net/app/themes/wp-lite-child/images/search-black.png" alt=""> </a><div class="" id="search_form" data-toggler=".is-expanded"><form role="search" method="get" id="searchform" action="https://www.pigprogress.net/"><div class="grid-x"><div class="cell auto"><input type="text" value="" name="s" id="s" placeholder="Search"></div><div class="cell shrink"><input type="submit" id="searchsubmit" value="Search" class="icon-button"></div><div class="cell shrink"><a class="close-search" data-toggle="search_form"><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="#fff" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg></a></div></div></form></div> <button class="menu-icon show-for-small-only" type="button" data-open="offCanvasRight"></button></div></div></nav></div></div></div><div id="catcher"></div><div class="bottom-bar blue hide-for-small-only"><div class="grid-container"><div class=" flex-container align-right"> <span id="custom_html-2" class="widget_text widget_custom_html"><div class="textwidget custom-html-widget">Gateway to the world of pig production</div></span></div></div></div></header><div id="custom_html-33" class="widget_text grid-container widget_custom_html"><div class="textwidget custom-html-widget"><br><center><div class="ad ad--rectangle"><div id="BillboardTop"> <script>googletag.cmd.push(function () { googletag.display('BillboardTop'); });</script> </div></div></center></div></div><div class="site-content"><div class="grid-container"><div class="grid-x margin-large"><main class="cell small-12 medium-12"><section class="error-404 not-found"><header class="page-header text-center"><h3 class="page-title">Page not found</h3><p><a href="/">> Return to the homepage</a></p></header><div class="grid-x align-middle"><div class="cell small-12 medium-6"> <img width="539" height="293" src="https://www.pigprogress.net/app/uploads/2021/11/404-illustration-pigprogress-1.png" class="attachment-full size-full" alt="" decoding="async" fetchpriority="high" srcset="https://www.pigprogress.net/app/uploads/2021/11/404-illustration-pigprogress-1.png 539w, https://www.pigprogress.net/app/uploads/2021/11/404-illustration-pigprogress-1-300x163.png 300w" sizes="(max-width: 539px) 100vw, 539px" /></div><div class="cell small-12 medium-6"><h3>What are you looking for?</h3><form role="search" method="get" id="searchform" action="https://www.pigprogress.net/"><div class="grid-x"><div class="cell auto"><input type="text" value="" name="s" id="s" placeholder="Search"></div><div class="cell shrink"><input type="submit" id="searchsubmit" value="Search" class="icon-button"></div><div class="cell shrink"><a class="close-search" data-toggle="search_form"><svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="#fff" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg></a></div></div></form></div></div></section></main></div><div class="section padding-large"><div class="grid-x grid-padding-x align-center"><div class="cell small-9"><div class="small-12 cell"><h3 class="margin-small">Recent articles</h3></div><div class="grid-x grid-padding-x"><div class="medium-6 cell"><div class="text-grid grid-x regular"><div class="cell small-4"><figure><a class="position-relative" href="https://www.pigprogress.net/health-nutrition/health/what-does-science-say-about-mrna-vaccines-for-pigs/"><img width="389" height="260" src="https://www.pigprogress.net/app/uploads/2024/05/IMG_Photo1-389x260.jpg" class="attachment-image-news size-image-news wp-post-image" alt="mRNA vaccines pigs" decoding="async" srcset="https://www.pigprogress.net/app/uploads/2024/05/IMG_Photo1-389x260.jpg 389w, https://www.pigprogress.net/app/uploads/2024/05/IMG_Photo1-848x565.jpg 848w, https://www.pigprogress.net/app/uploads/2024/05/IMG_Photo1-414x276.jpg 414w, https://www.pigprogress.net/app/uploads/2024/05/IMG_Photo1-288x192.jpg 288w" sizes="(max-width: 389px) 100vw, 389px" /><label class="premium position-absolute">Premium</label></a></figure></div><div class="cell auto"><div class="text-wrap"><div class="meta-t"><span class="time">10-05</span> |
  447. Article</div><h3><a href="https://www.pigprogress.net/health-nutrition/health/what-does-science-say-about-mrna-vaccines-for-pigs/">What does science say about mRNA vaccines for pigs?</a></h3></div></div></div></div><div class="medium-6 cell"><div class="text-grid grid-x regular"><div class="cell small-4"><figure><a class="position-relative" href="https://www.pigprogress.net/health-nutrition/health/guidelines-to-harmonise-animal-welfare-labelling-systems/"><img width="389" height="260" src="https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-389x260.jpg" class="attachment-image-news size-image-news wp-post-image" alt="animal welfare labelling" decoding="async" srcset="https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-389x260.jpg 389w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-300x200.jpg 300w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-1024x682.jpg 1024w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-768x511.jpg 768w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-848x565.jpg 848w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-414x276.jpg 414w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010-288x192.jpg 288w, https://www.pigprogress.net/app/uploads/2024/05/IMG_vem405201-010.jpg 1080w" sizes="(max-width: 389px) 100vw, 389px" /></a></figure></div><div class="cell auto"><div class="text-wrap"><div class="meta-t"><span class="time">09-05</span> |
  448. News</div><h3><a href="https://www.pigprogress.net/health-nutrition/health/guidelines-to-harmonise-animal-welfare-labelling-systems/">Guidelines to harmonise animal welfare labelling systems</a></h3></div></div></div></div><div class="medium-6 cell"><div class="text-grid grid-x regular"><div class="cell small-4"><figure><a class="position-relative" href="https://www.pigprogress.net/health-nutrition/health/how-leucine-improves-pig-growth-performance/"><img width="389" height="260" src="https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-389x260.jpg" class="attachment-image-news size-image-news wp-post-image" alt="leucine pigs" decoding="async" srcset="https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-389x260.jpg 389w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-300x200.jpg 300w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-1024x683.jpg 1024w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-768x512.jpg 768w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-848x565.jpg 848w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-414x276.jpg 414w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033-288x192.jpg 288w, https://www.pigprogress.net/app/uploads/2024/05/IMG_roe203430_033.jpg 1080w" sizes="(max-width: 389px) 100vw, 389px" /><label class="premium position-absolute">Premium</label></a></figure></div><div class="cell auto"><div class="text-wrap"><div class="meta-t"><span class="time">08-05</span> |
  449. Article</div><h3><a href="https://www.pigprogress.net/health-nutrition/health/how-leucine-improves-pig-growth-performance/">How leucine improves growth performance in pigs</a></h3></div></div></div></div><div class="medium-6 cell"><div class="text-grid grid-x sponsor"><div class="cell small-4"><figure><a class="position-relative" href="https://www.pigprogress.net/health-nutrition/health/busting-5-myths-around-biosecurity-in-pig-farming/"><img width="389" height="260" src="https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-389x260.jpg" class="attachment-image-news size-image-news wp-post-image" alt="Top-notch biosecurity at the border between Denmark and Germany. Each empty pig truck is disinfected from top to bottom. Photo: Vincent ter Beek" decoding="async" srcset="https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-389x260.jpg 389w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-300x200.jpg 300w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-1024x683.jpg 1024w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-768x512.jpg 768w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-848x565.jpg 848w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-414x276.jpg 414w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052-288x192.jpg 288w, https://www.pigprogress.net/app/uploads/2024/05/IMG_IMG_8052.jpg 1080w" sizes="(max-width: 389px) 100vw, 389px" /></a></figure></div><div class="cell auto"><div class="text-wrap"><div class="meta-t"><span class="time">08-05</span> |
  450. Partner</div><h3><a href="https://www.pigprogress.net/health-nutrition/health/busting-5-myths-around-biosecurity-in-pig-farming/">Busting 5 myths around biosecurity in pig farming</a></h3></div></div></div></div><div class="medium-6 cell"><div class="text-grid grid-x regular"><div class="cell small-4"><figure><a class="position-relative" href="https://www.pigprogress.net/the-industrymarkets/market-trends-analysis-the-industrymarkets-2/rabobank-pork-production-returns-to-profitability/"><img width="389" height="260" src="https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-389x260.jpg" class="attachment-image-news size-image-news wp-post-image" alt="Rabobank pork" decoding="async" srcset="https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-389x260.jpg 389w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-300x200.jpg 300w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-1024x683.jpg 1024w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-768x512.jpg 768w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-848x565.jpg 848w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-414x276.jpg 414w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s-288x192.jpg 288w, https://www.pigprogress.net/app/uploads/2024/05/IMG_tkf417135s.jpg 1080w" sizes="(max-width: 389px) 100vw, 389px" /></a></figure></div><div class="cell auto"><div class="text-wrap"><div class="meta-t"><span class="time">07-05</span> |
  451. News</div><h3><a href="https://www.pigprogress.net/the-industrymarkets/market-trends-analysis-the-industrymarkets-2/rabobank-pork-production-returns-to-profitability/">Rabobank: Pork production returns to profitability</a></h3></div></div></div></div><div class="medium-6 cell"><div class="text-grid grid-x regular"><div class="cell small-4"><figure><a class="position-relative" href="https://www.pigprogress.net/the-industrymarkets/market-trends-analysis-the-industrymarkets-2/podcast-prof-larry-firkins-considers-why-employees-stay/"><img width="389" height="260" src="https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-389x260.jpg" class="attachment-image-news size-image-news wp-post-image" alt="Photo: Vincent ter Beek" decoding="async" srcset="https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-389x260.jpg 389w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-300x200.jpg 300w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-1024x684.jpg 1024w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-768x513.jpg 768w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-848x565.jpg 848w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-414x276.jpg 414w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6-288x192.jpg 288w, https://www.pigprogress.net/app/uploads/2024/05/IMG_S4E6.jpg 1080w" sizes="(max-width: 389px) 100vw, 389px" /></a></figure></div><div class="cell auto"><div class="text-wrap"><div class="meta-t"><span class="time">06-05</span> |
  452. News</div><h3><a href="https://www.pigprogress.net/the-industrymarkets/market-trends-analysis-the-industrymarkets-2/podcast-prof-larry-firkins-considers-why-employees-stay/">Podcast: Prof Larry Firkins considers why employees stay</a></h3></div></div></div></div></div></div></div></div></div></div><footer id="footer-wrap hide-for-print"><div class="top-footer"><div class="grid-container"><div class="grid-x grid-padding-x "><div class="footer-col cell"><div id="nav_menu-2" class="widget_nav_menu widget"><h5 class="widgettitle">Focus topics</h5><div class="menu-footer-1-focus-topics-container"><ul id="menu-footer-1-focus-topics" class="menu"><li id="menu-item-25312" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-25312"><a href="https://www.pigprogress.net/dossier/special-focus-within-the-pig-sector/">Special editions</a></li><li id="menu-item-26731" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-26731"><a href="https://www.pigprogress.net/dossier/african-swine-fever/">African Swine Fever</a></li><li id="menu-item-26732" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-26732"><a href="https://www.pigprogress.net/health-tool/">Health Tool</a></li><li id="menu-item-26733" class="menu-item menu-item-type-post_type menu-item-object-topic menu-item-26733"><a href="https://www.pigprogress.net/topic/farm-visits/">Farm visits</a></li><li id="menu-item-32157" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-32157"><a href="https://get.allaboutfeed.net/eurotier-2022/?_ga=2.162956476.1682458821.1671438564-560366403.1667815432#lp-pom-image-90">Seminars &#8211; EuroTier</a></li></ul></div></div></div><div class="footer-col cell"><div id="nav_menu-3" class="widget_nav_menu widget"><h5 class="widgettitle">Products</h5><div class="menu-footer-2-products-container"><ul id="menu-footer-2-products" class="menu"><li id="menu-item-461" class="menu-item menu-item-type-post_type menu-item-object-pillar-page menu-item-461"><a href="https://www.pigprogress.net/dossier/webinars/">Webinars</a></li><li id="menu-item-408" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-408"><a href="https://misset.com/international-events/">Events</a></li><li id="menu-item-409" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-409"><a href="https://www.pigprogress.net/newsletter/">Newsletter</a></li><li id="menu-item-410" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-410"><a href="https://www.pigprogress.net/digital-magazine/">Digital magazine</a></li><li id="menu-item-414" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-414"><a href="https://www.pigprogress.net/our-content-partners/">Our content partners</a></li></ul></div></div></div><div class="footer-col cell"><div id="nav_menu-4" class="widget_nav_menu widget"><h5 class="widgettitle">Social</h5><div class="menu-footer-3-social-container"><ul id="menu-footer-3-social" class="menu"><li id="menu-item-415" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-415"><a href="https://www.facebook.com/PigProgress">Facebook</a></li><li id="menu-item-416" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-416"><a href="https://www.linkedin.com/company/pigprogress/">LinkedIn</a></li><li id="menu-item-417" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-417"><a href="https://twitter.com/pigprogress">Twitter</a></li><li id="menu-item-462" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-462"><a href="https://www.instagram.com/pigprogress/">Instagram</a></li><li id="menu-item-36064" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-36064"><a href="https://www.youtube.com/@PigProgress">YouTube</a></li></ul></div></div></div><div class="footer-col cell"><div id="nav_menu-5" class="widget_nav_menu widget"><h5 class="widgettitle">Services</h5><div class="menu-footer-4-services-container"><ul id="menu-footer-4-services" class="menu"><li id="menu-item-418" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-418"><a href="https://misset.com/contact/?lang=en">Contact</a></li><li id="menu-item-419" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-419"><a href="https://misset.com/international/?lang=en">Advertising</a></li><li id="menu-item-420" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-420"><a href="https://www.pigprogress.net/our-sites/">Our sites</a></li></ul></div></div></div><div class="footer-col newslwtter cell"><div id="gform_widget-2" class="gform_widget widget"><h5 class="widgettitle">Newsletter</h5> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js" id="wp-polyfill-inert-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/vendor/regenerator-runtime.min.js" id="regenerator-runtime-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/vendor/wp-polyfill.min.js" id="wp-polyfill-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/dom-ready.min.js" id="wp-dom-ready-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/hooks.min.js" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/i18n.min.js" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after">wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );</script> <script type="text/javascript" src="https://www.pigprogress.net/wp/wp-includes/js/dist/a11y.min.js" id="wp-a11y-js"></script> <script type="text/javascript" defer='defer' src="https://www.pigprogress.net/app/plugins/gravityforms/js/jquery.json.min.js" id="gform_json-js"></script> <script type="text/javascript" id="gform_gravityforms-js-extra">var gform_i18n = {"datepicker":{"days":{"monday":"Mon","tuesday":"Tue","wednesday":"Wed","thursday":"Thu","friday":"Fri","saturday":"Sat","sunday":"Sun"},"months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"firstDay":1,"iconText":"Select date"}};
  453. var gf_legacy_multi = [];
  454. var gform_gravityforms = {"strings":{"invalid_file_extension":"This type of file is not allowed. Must be one of the following:","delete_file":"Delete this file","in_progress":"in progress","file_exceeds_limit":"File exceeds size limit","illegal_extension":"This type of file is not allowed.","max_reached":"Maximum number of files reached","unknown_error":"There was a problem while saving the file on the server","currently_uploading":"Please wait for the uploading to complete","cancel":"Cancel","cancel_upload":"Cancel this upload","cancelled":"Cancelled"},"vars":{"images_url":"https:\/\/www.pigprogress.net\/app\/plugins\/gravityforms\/images"}};
  455. var gf_global = {"gf_currency_config":{"name":"Euro","symbol_left":"","symbol_right":"&#8364;","symbol_padding":" ","thousand_separator":".","decimal_separator":",","decimals":2,"code":"EUR"},"base_url":"https:\/\/www.pigprogress.net\/app\/plugins\/gravityforms","number_formats":[],"spinnerUrl":"https:\/\/www.pigprogress.net\/app\/plugins\/gravityforms\/images\/spinner.svg","strings":{"newRowAdded":"New row added.","rowRemoved":"Row removed","formSaved":"The form has been saved.  The content contains the link to return and complete the form."}};</script> <script type="text/javascript" defer='defer' src="https://www.pigprogress.net/app/plugins/gravityforms/js/gravityforms.min.js" id="gform_gravityforms-js"></script> <script type="text/javascript">var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),gform.hooks[o][n].push({tag:i,callable:r,priority:t=null==t?10:t})},doHook:function(n,o,r){var t;if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[n][o]&&((o=gform.hooks[n][o]).sort(function(o,n){return o.priority-n.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==n?t.apply(null,r):r[0]=t.apply(null,r)})),"filter"==n)return r[0]},removeHook:function(o,n,t,i){var r;null!=gform.hooks[o][n]&&(r=(r=gform.hooks[o][n]).filter(function(o,n,r){return!!(null!=i&&i!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][n]=r)}});</script> <div class='gf_browser_unknown gform_wrapper gravity-theme newsletter_wrapper' id='gform_wrapper_5' ><div class='gform_heading'><p class='gform_required_legend'>&quot;<span class="gfield_required gfield_required_asterisk">*</span>&quot; indicates required fields</p></div><form method='post' enctype='multipart/form-data'  id='gform_5' class='newsletter' action='/RSS/Feed/News-on-Global-Pig-Production/' ><div class='gform_body gform-body'><div id='gform_fields_5' class='gform_fields top_label form_sublabel_below description_below'><div id="field_5_4"  class="gfield gfield--width-full gfield_contains_required field_sublabel_below field_description_below gfield_visibility_visible"  data-js-reload="field_5_4"><label class='gfield_label' for='input_5_4' >Email<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_email'> <input name='input_4' id='input_5_4' type='text' value='' class='large'    aria-required="true" aria-invalid="false"  /></div></div><div id="field_5_2"  class="gfield gfield_contains_required field_sublabel_below field_description_below gfield_visibility_visible"  data-js-reload="field_5_2"><label class='gfield_label' for='input_5_2' >First name<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_5_2' type='text' value='' class='large'     aria-required="true" aria-invalid="false"   /></div></div><div id="field_5_3"  class="gfield gform_hidden field_sublabel_below field_description_below gfield_visibility_visible"  data-js-reload="field_5_3"><div class='ginput_container ginput_container_text'><input name='input_3' id='input_5_3' type='hidden' class='gform_hidden'  aria-invalid="false" value='11/05/2024' /></div></div><div id="field_5_5"  class="gfield gform_validation_container field_sublabel_below field_description_below gfield_visibility_visible"  data-js-reload="field_5_5"><label class='gfield_label' for='input_5_5' >Name</label><div class='ginput_container'><input name='input_5' id='input_5_5' type='text' value='' /></div><div class='gfield_description' id='gfield_description_5_5'>This field is for validation purposes and should be left unchanged.</div></div></div></div><div class='gform_footer top_label'> <input type='submit' id='gform_submit_button_5' class='gform_button button' value='Subscribe'  onclick='if(window["gf_submitting_5"]){return false;}  window["gf_submitting_5"]=true;  ' onkeypress='if( event.keyCode == 13 ){ if(window["gf_submitting_5"]){return false;} window["gf_submitting_5"]=true;  jQuery("#gform_5").trigger("submit",[true]); }' /> <input type='hidden' class='gform_hidden' name='is_submit_5' value='1' /> <input type='hidden' class='gform_hidden' name='gform_submit' value='5' /> <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' /> <input type='hidden' class='gform_hidden' name='state_5' value='WyJbXSIsIjJlZGZhZTNkN2QzNzIwZjRjNmY4MmNjYmFmNmFiMjViIl0=' /> <input type='hidden' class='gform_hidden' name='gform_target_page_number_5' id='gform_target_page_number_5' value='0' /> <input type='hidden' class='gform_hidden' name='gform_source_page_number_5' id='gform_source_page_number_5' value='1' /> <input type='hidden' name='gform_field_values' value='' /></div></form></div></div></div></div></div></div><div class="bottom-footer"><div class="grid-container"><div id="custom_html-6" class="widget_text widget_custom_html widget"><div class="textwidget custom-html-widget"><a href="https://www.misset.com/" target="_blank" rel="noopener">Misset Uitgeverij B.V.</a> Copyright reserved.<br/>The following rules apply to the use of this site: <a href="https://misset.com/terms-conditions/" target="_blank" rel="noopener">Terms of Use</a>, <a href="https://misset.com/privacy-en/" target="_blank" rel="noopener">Privacy Policy</a> and <a href="https://misset.com/cookies-en/" target="_blank" rel="noopener">Cookie Policy</a>.</div></div></div></div></footer><div class="manageOverlay" id="mso-management-overlay"><div class="manageOverlay--header"> <img src="https://freave.cdn.freavehd.net/misset/user-shield-regular.svg"> Beheer</div><div class="manageOverlay--content"> <a href="/wp-admin"><img src="https://freave.cdn.freavehd.net/misset/tachometer-alt-solid.svg"> WP Admin </a> <a href="" style="display:none" id="mso-management-overlay-content-link"><img
  456. src="https://freave.cdn.freavehd.net/misset/pencil-alt-solid.svg"> Bewerk bericht</a></div></div> <script type="text/javascript" id="misset_freave_sso-load_mso_user_profile-js-extra">var php_data = {"prefix":"\/wp\/","admin_ajax_url":"https:\/\/www.pigprogress.net\/wp\/wp-admin\/admin-ajax.php"};</script> <script type="text/javascript" src="https://www.pigprogress.net/app/plugins/freave-sso/static/load_mso_user_profile.js" id="misset_freave_sso-load_mso_user_profile-js"></script> <script type="text/javascript" src="https://www.pigprogress.net/app/themes/wp-lite-child/dist/scripts.min.js" id="lite-scripts-js"></script> <script type="text/javascript">gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 5) {} } );jQuery(document).bind('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );</script> <script type="text/javascript">gform.initializeOnLoaded( function() { jQuery(document).trigger('gform_post_render', [5, 1]) } );</script> </body></html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda