Opened 12 years ago
Closed 12 years ago
#29133 closed defect (bug) (worksforme)
Twenty Ten: LaTeX doesn't render correctly on archive pages
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 3.0 |
| Component: | Bundled Theme | Keywords: | close |
| Focuses: | Cc: |
Description (last modified by )
When visiting an archive page like a tag or category archive, text formatted in LaTeX doesn't appear correctly. Instead, it's just missing:
Confirmed the same thing is happening on category pages here:
Compared this to Twenty Twelve where the LaTeX appears correctly:
User reported in the WordPress.com forums here:
http://en.forums.wordpress.com/topic/latex-doesnt-render-when-i-view-posts-by-tags?replies=3
Attachments (3)
Change History (8)
#3
@
12 years ago
- Description modified (diff)
This appears to be the expected result.
Twenty Ten uses the_excerpt() for archives and search, which strips all tags:
https://themes.trac.wordpress.org/browser/twentyten/1.6/loop.php#L136
Twenty Twelve uses the_excerpt() for search, and the_content() for archives:
https://themes.trac.wordpress.org/browser/twentytwelve/1.4/content.php#L38
You can change this by creating a child theme.



photo1