Sybre Waaijer

Results 433 comments of Sybre Waaijer

Hi @blizam, You can fall back to the WordPress Core sitemaps by disabling the "optimized" sitemap. TSF augments the WordPress Core sitemaps for indexability and last-modified support. The Google News...

Hi @blizam, TSF determines "indexability" by testing if the page is indexable (not "noindex") and isn't redirected. You can use `tsf()->sitemap()->utils()->is_post_included_in_sitemap()` and `is_term_included_in_sitemap()` for that, see https://github.com/sybrew/the-seo-framework/blob/5.0.2/inc/classes/sitemap/utils.class.php#L72-L174. The docs you...

Hi @blizam, I just modernized the documentation to support TSF v5.0 and later. Here's the tested code you requested: https://tsf.fyi/kb/a/160#add-categories-and-tags-to-base-sitemap.

The next major release provides a basis that allows migrating data. Some considerations: 1. The migration **must be user-invoked** if the site has over 200 posts. Otherwise, this can bring...

When this is resolved, we can implement filter `sanitize_post_meta_{$meta_key}`, allowing the sanitization of our metadata, even when others try to augment it. For now, `\The_SEO_Framework\Data\Filter\Plugin::filter_meta_update()` is unhooked (commit pending), and...

This is how it will look: ![image](https://user-images.githubusercontent.com/7662236/217067936-266a5ad4-59fd-4b76-be3d-8b82b1ebf23b.png) It is validated by a regular expression I published here: https://regex101.com/r/N3f5lF/6. Google allows "only" 100 characters; however, with the restrictions from the regex...

I'm forgoing the "auto" feature for now because these issues are still lingering: 1. What are the factors for making it "summary" versus "summary_large_image"? 2. What if there are video...

See https://tsf.fyi/kb/data-stored-in-your-database/. See https://developer.wordpress.org/plugins/plugin-basics/uninstall-methods/. I think it'd even be better if we created a separate plugin that does this specifically. We should not provide it via WordPress.org: let users upload...

Filters `the_seo_framework_schema_entity_builders` and `the_seo_framework_schema_graph_data` allow for modifying, trimming, and adding to the structured data to our new Schema.org `@graph`. Function `tsf()->schema()` provides a bridge between the generators via a property:...

Expounded upon in (hopefully) simpler terms at [this comment](https://github.com/sybrew/The-SEO-Framework-Extension-Manager/issues/78#issuecomment-1677680956) and exemplified in [this gist](https://gist.github.com/sybrew/57dd909654edefd3871095fb0e4bf137#file-tsf-custom-image-generator-php-L42-L46).