Sybre Waaijer
Sybre Waaijer
Hi Alan, We use `get_home_url()` to output that URL, which is filterable via `home_url`. If that URL is incorrect, something may need to be addressed with the setup. Disabling that...
I don't think our vision aligns with that of WordPress.org regarding "Community" -- for them, "Community" means "no money incentive allowed." See this [comment thread on Make](https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/#comment-9532). Even offering Premium...
[Users also requested](https://wordpress.org/support/topic/use-wordpress-title-instead-of-seo-title-for-breadcrumbs-option/#post-17275582) a custom breadcrumb name field for posts and terms.
"Should we affect only the structured data JSON or the shortcode?" I'd vote for having them affected both simultaneously; not independently tweakable. The breadcrumb hierarchy generation is cached. So, once...
I'm still collecting data and planning this feature, and I have other features to attend to, so please do not hold your breath just yet.
Another user used the breadcrumb shortcode under the title, which wasn't pretty. [Removing the current page's breadcrumb fixed that](https://wordpress.org/support/topic/styling-breadcrumbs-2/#post-17531070). Still, we shouldn't remove the current page crumb from the Schema.org...
Previous: #392. This issue affects all sites, regardless of which setting. This is because the `home_url()` isn't augmented by Polylang when the plugin isn't "whitelisted." From TSF v5.0, we started...
Here's a quick filter to incorporate it yourself. Note that this will not be how it will work eventually. ```php add_filter( 'get_previous_post_where', 'my_tsf_exclude_posts_from_adjacent_links_where' ); add_filter( 'get_next_post_where', 'my_tsf_exclude_posts_from_adjacent_links_where' ); /** *...
This feature was removed in TSF v5.0 unintentionally during the Structured Data rewrite. If you wish to have this feature immediately, you can implement this filter: ```php add_filter( 'the_seo_framework_schema_graph_data', function(...
Hello! I'm afraid it didn't help for you. Still, I'm going to implement this in 5.0.5, after which you can remove the snippet above from your website. I recommend writing...