• add_filter(
    ‘wp_sitemaps_posts_entry’,
    function( $entry, $post ) {
    $entry[‘lastmod’] = $post->post_modified_gmt;
    return $entry;
    },
    10,
    2
    );

    Should the above really get translated ???

  • The topic ‘Plugin Translation’ is closed to new replies.