telsenome
Forum Replies Created
-
Forum: Plugins
In reply to: [Team Members] Does the plugin have Rest API supportNo worries. Thank you.
I understand now. Thanks
Hi @24harish
Thanks for the reply! Where can I find the documentation for that? ??
Forum: Plugins
In reply to: [Yoast SEO] Missing field “mainEntity” (Google)It seems like the Yoast team is working on a fix. So this will hopefully be resolved soon! ??
https://www.ads-software.com/support/topic/missing-field-mainentity-with-yoast-faq-block/
Forum: Plugins
In reply to: [Yoast SEO] Missing field “mainEntity” (Google)Having the same problem….. The ‘mainEntity’ attribute exists. Could it be placed wrongly within the structured data?
So if I add
/blog/wp-json/wp/v2/posts?_embed=wp:featuredmedia&_fields=type,id,date,modified,slug,title,excerpt,author,categories,_links,_embedded&categories=121&orderby=date&page=1&per_page=9
then it will work?
How strange. I tested now and it doesn’t work for me. Could it be related to fetching posts via categories? For example, here’s a request URI that isn’t flushed when switching a post from
published
todraft
./blog/wp-json/wp/v2/posts?_embed=wp:featuredmedia&_fields=id,date,modified,slug,title,excerpt,author,categories,_links,_embedded&categories=121&orderby=date&page=1&per_page=9
I see. Thanks!
Forum: Plugins
In reply to: [WP REST Cache] Unsure which values to use for the cache regenerationThank you. Our server is quite robust so I think it will handle the current regeneration settings without problems then!
Forum: Plugins
In reply to: [WP REST Cache] Not workingHow does your api calls look like? Are you using custom endpoints?
Forum: Plugins
In reply to: [WP REST Cache] Unsure which values to use for the cache regenerationIf the cache regeneration runs and there are no caches to regenerate the server load is minimal? I’m wondering because the default value for the interval is twice daily and I’d probably want to lower it significantly.
Forum: Plugins
In reply to: [Content Anchor Links] No ids are inserted into headingsThank you!
I’m very sorry about my neglect. I forgot adding the code to functions.php. Thank you for being so helpful @wpjoli
I thought these headings:
<h2>Heading2</h2>\n\n\n\n<h3>Heading3</h3>\n\n\n\n<h3>Heading3 again</h3>\n\n\n\n<h4>Heading4</h4>\n\n\n\n
would have ids inserted like this:
<h2 id="heading2">Heading2</h2>\n\n\n\n<h3 id="heading3">Heading3</h3>\n\n\n\n<h3 id="heading3-again">Heading3 again</h3>\n\n\n\n<h4 id="heading4">Heading4</h4>\n\n\n\n
- This reply was modified 4 years, 1 month ago by telsenome.
Maybe I’ve misunderstood. I thought that id attributes / anchors would be added to the html. So when fetching the html they would have these attributes inserted. See here, I’ve created a blog post with 4 headings. This is what I get back in terms of content:
\n<h2>Heading2</h2>\n\n\n\n<h3>Heading3</h3>\n\n\n\n<h3>Heading3 again</h3>\n\n\n\n<h4>Heading4</h4>\n\n\n\n<style> #joli-toc-wrapper nav#joli-toc.joli-expanded, #joli-toc-wrapper.joli-folded nav#joli-toc.joli-expanded, #joli-toc-wrapper.joli-unfolded nav#joli-toc{padding: 10px !important;}#joli-toc-wrapper nav#joli-toc.joli-expanded li a, #joli-toc-wrapper nav#joli-toc.joli-collapsed li a,#joli-toc-wrapper.joli-folded nav#joli-toc.joli-expanded li a, #joli-toc-wrapper.joli-unfolded nav#joli-toc li a{text-overflow: unset !important;overflow: hidden !important;white-space: normal !important;}#joli-toc-wrapper nav#joli-toc{width: auto !important;}#joli-toc-wrapper nav#joli-toc.joli-collapsed{width: initial !important;}#joli-toc-wrapper nav#joli-toc .title #title-label{text-align: left !important;}#joli-toc-wrapper nav#joli-toc.joli-collapsed .title, #joli-toc-wrapper nav#joli-toc .title{}#joli-toc-wrapper.joli-unfolded-ufloating nav#joli-toc ul.joli-nav ul,#joli-toc-wrapper.joli-incontent nav#joli-toc ul.joli-nav ul,#joli-toc-wrapper nav#joli-toc.joli-expanded ul.joli-nav ul {margin: 0 0 0 20px !important;}#joli-toc-wrapper {top: initial !important;bottom: initial !important;margin-left: initial !important;}body.admin-bar #joli-toc-wrapper {top: initial !important;bottom: initial !important;}</style><div id=\"joli-toc-filler\"></div>\r\n<div id=\"joli-toc-wrapper\" class=\"joli-unfolded-incontent joli-unfolded joli-incontent joli-smoothscroll\">\r\n <nav id=\"joli-toc\">\r\n <header id=\"joli-toc-header\">\r\n <div class=\"title\">\r\n <span id=\"title-label\">Table of contents</span>\r\n </div>\r\n </header>\r\n <ul class=\"joli-nav\"><li class=\"item\"><a href=\"#heading2\" title=\"Heading2\" class=\"joli-h2\">Heading2</a><ul><li class=\"subitem\"><a href=\"#heading3\" title=\"Heading3\" class=\"joli-h3\">Heading3</a></li><li class=\"subitem\"><a href=\"#heading3-again\" title=\"Heading3 again\" class=\"joli-h3\">Heading3 again</a><ul><li class=\"subitem\"><a href=\"#heading4\" title=\"Heading4\" class=\"joli-h4\">Heading4</a></li></ul></li></ul></li></ul> </nav>\r\n</div>\r\n\n