| 7 | | protected $shortcodes = array( 'test-shortcode-tag', 'footag', 'bartag', 'baztag', 'dumptag', 'hyphen', 'hyphen-foo', 'hyphen-foo-bar' ); |
| | 7 | protected $shortcodes = array( 'test-shortcode-tag', 'footag', 'bartag', 'baztag', 'dumptag', 'hyphen', 'hyphen-foo', 'hyphen-foo-bar', 'url' ); |
| | 461 | array( |
| | 462 | '[url]', |
| | 463 | 'http://www.wordpress.org/', |
| | 464 | ), |
| | 465 | array( |
| | 466 | '<a href="[url]">', |
| | 467 | '<a href="http://www.wordpress.org/">', |
| | 468 | ), |
| | 469 | array( |
| | 470 | '<a href=[url] >', |
| | 471 | '<a href=http://www.wordpress.org/ >', |
| | 472 | ), |
| | 473 | array( |
| | 474 | '<a href="[url]plugins/">', |
| | 475 | '<a href="http://www.wordpress.org/plugins/">', |
| | 476 | ), |
| | 477 | array( |
| | 478 | '<a href="bad[url]">', |
| | 479 | '<a href="//www.wordpress.org/">', |
| | 480 | ), |
| | 481 | array( |
| | 482 | '<a onclick="bad[url]">', |
| | 483 | '<a onclick="bad[url]">', |
| | 484 | ), |