You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior
The current markup is <article id="post-article" , when it should be a unique ID to reference the actual post. For example, a post URI.
Current data:
Expected data:
Suggested implementation/fix
This is likely caused due to the Article styles being targeted using the #post-article. Replacing this with a CSS class would be better. Then we set the ID to posts/post-slug. If a site URL is set, we use that as a prefix, example: http://example.org/posts/post-slug
The text was updated successfully, but these errors were encountered:
Describe the bug
The Article element for posts currently have the wrong ID format.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The current markup is
<article id="post-article"
, when it should be a unique ID to reference the actual post. For example, a post URI.Current data:
![image](https://user-images.githubusercontent.com/95144705/161530320-1473f9ac-69b3-4c31-85f5-877de2937267.png)
Expected data:
![image](https://user-images.githubusercontent.com/95144705/161530543-d53270cd-e9b4-4fae-8294-cf558d92e90f.png)
Suggested implementation/fix
This is likely caused due to the Article styles being targeted using the
#post-article
. Replacing this with a CSS class would be better. Then we set the ID toposts/post-slug
. If a site URL is set, we use that as a prefix, example:http://example.org/posts/post-slug
The text was updated successfully, but these errors were encountered: