Opened 14 years ago
Closed 13 years ago
#20837 closed defect (bug) (worksforme)
About WordPress: Wrap class/function names into code tags
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | low | |
| Severity: | minor | Version: | 3.4 |
| Component: | Help/About | Keywords: | has-patch rtl-feedback |
| Focuses: | Cc: |
Description
Just needs some magic from Nacin for GlotPress.
Attachments (4)
Change History (16)
#5
follow-up:
↓ 7
@
14 years ago
- Keywords rtl-feedback added
We just did this in 3.3: <h4 style="direction:ltr">is_main_query()</h4>
We can't do that so easily with the use of "API" there.
Perhaps we can just "unstyle" <code> inside an <h4>. We're mostly worried about the semantic value as well as RTL.
#6
@
14 years ago
Looks like the compromise is to use a css class that would keep certain text blocks like headers in LTR. That gives some flexibility. The other option would be to style places we don't want monotype fonts:
h1 code,
h2 code,
h3 code,
h4 code,
h5 code,
h6 code {
font-family: sans-serif;
}
#7
in reply to:
↑ 5
@
14 years ago
Replying to nacin:
We just did this in 3.3:
<h4 style="direction:ltr">is_main_query()</h4>
Also <h4><?php _e( 'WP_Screen API' ); ?></h4>.
#9
@
14 years ago
- Milestone changed from 3.4 to Awaiting Review
- Priority changed from normal to low
Going to look into this, but not a priority if we don't get to it for 3.4 final.
#10
@
14 years ago
Maybe "<h4>Faster Post Queries</h4>", then "<code>WP_Query</code> has been optimized..."

<code>WP_Query</code> also.