Opened 10 years ago
Closed 8 years ago
#32172 closed enhancement (duplicate)
Positional shortcodes cannot be single quoted
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Shortcodes | Keywords: | has-patch |
Focuses: | Cc: |
Description
The following shortcode results in a single element in the $atts array: [test "some long text"]
array(0 => "some long text")
The following shortcode results in 3 elements in the $attrs array: [test 'some long text']
array(0 => "'some", 1 => "long", 2 => "text'")
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.
Related: #5914
This bug has been there since the introduction of positional shortcode attributes in [6911].