Paul Biron

Results 102 comments of Paul Biron

I haven't yet created' a trac ticket for this bug in `wp_import_handle_upload()` because the standard importer isn't really affected by it. However, with this plugin's feature of selecting previously uploaded...

see [Issue 123: "Select it from the Media Library" should limit the displayed files to XML files](https://github.com/humanmade/WordPress-Importer/issues/123)

> Object sub types (e.g. custom taxonomies): > > Hmm, we could do `sanitize_key()` in `\Core_Sitemaps_Provider::get_sitemap_url`, but then we also need to do it in places using `\Core_Sitemaps_Provider::get_object_sub_types` I haven't...

> Sitemaps should still be active for testing and inspection. Sites not in production typically are "private" to avid early indexing a test/staging site. This does not remove he need...

This is my attempt to address the question asked by @svandragt [on slack](https://wordpress.slack.com/archives/CTKTGNJJW/p1586875257113600) about the use case for this functionality. Suppose a site owner updates to WP 5.5 and hears...

I'm now fairly certainly I have an alternate way to structure the XSLT to fully support custom columns that is **MUCH** easier than that in #153, and only _slightly_ more...

For example, ``` add_filter( 'core_sitemaps_posts_url_list', function( $url_list ) { foreach ( $url_list as &$url ) { $url['foo'] = 'bar'; } return $url_list; } ); ``` Will produce something like: ```...

> I do not know whether sitemap consumers (e.g., Google, Bing, Yandex, etc) would fail to process a sitemap that was invalid against the XML Schema, but do we want...

That said, I still think we should try to find a way for plugin authors to specify a namespace URI for extensions they add via the various `core_sitemaps_{$object_type}_url_list` filters. I...

And while I'm being pedantic (I'm in one of those moods today...I'll blame it on Covid-ID isolation :-), another **bad** thing about the sitemaps XML Schema is the type definition...