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
Path to theme is wp-content/themes/test-theme/ could probably just strip that out and leave it as includes/template-parts.php:413
WP_Hook->do_action should be displayed WP_Hook->do_action
#1 should not be linked, this can be escaped by prefixing # with !
Another option instead of escaping would be for the details to be code blocked or inserted within a html block, which takes care of 2/3 above, but the content would need to be run through nl2br() to add the <br> tags for newlines.
Examples of those approaches:
The text was updated successfully, but these errors were encountered:
I originally went with an HTML approach but had to abandon it. I'm cursing myself for not documenting why. I think it was related to overflow... results ended up being hidden outside of the comments because of long continuous strings, like paths, and misinterpreted whitespace characters?
The message sent to trac is not escaped properly, for example:
https://themes.trac.wordpress.org/ticket/99043#comment:2
wp-content/themes/test-theme/
could probably just strip that out and leave it asincludes/template-parts.php:413
WP_Hook->do_action
should be displayedWP_Hook->do_action
#1
should not be linked, this can be escaped by prefixing#
with!
Another option instead of escaping would be for the details to be code blocked or inserted within a html block, which takes care of 2/3 above, but the content would need to be run through
nl2br()
to add the<br>
tags for newlines.Examples of those approaches:
![Screen Shot 2021-05-10 at 11 43 23 am](https://user-images.githubusercontent.com/767313/117595804-1bcb3100-b185-11eb-817f-a126bdf807f5.png)
The text was updated successfully, but these errors were encountered: