Jon Cave
|
156048ca52
|
split was deprecated in PHP 5.3.0, so use explode instead. Props garyc40. Fixes #16325.
git-svn-id: https://develop.svn.wordpress.org/trunk@19726 602fd350-edb4-49c9-b593-d223f7449a82
|
2012-01-09 21:20:51 +00:00 |
|
Ryan Boren
|
2b186b0c45
|
Lose EOF ?>. Clean up EOF newlines. fixes #12307
git-svn-id: https://develop.svn.wordpress.org/trunk@19712 602fd350-edb4-49c9-b593-d223f7449a82
|
2012-01-08 17:01:11 +00:00 |
|
Jon Cave
|
760471a9a8
|
Fix mistakes in parameter documentation and add some missing param docs. See #19756.
git-svn-id: https://develop.svn.wordpress.org/trunk@19702 602fd350-edb4-49c9-b593-d223f7449a82
|
2012-01-06 18:31:43 +00:00 |
|
Ryan Boren
|
5e76729992
|
One newline is enough.
git-svn-id: https://develop.svn.wordpress.org/trunk@19684 602fd350-edb4-49c9-b593-d223f7449a82
|
2012-01-05 20:10:39 +00:00 |
|
Ryan Boren
|
0f2274ee75
|
Introduce sanitize_trackback_urls(). Don't ping bad urls. Don't ping bad urls or save them to the DB. Props xknown, SergeyBiryukov. fixes #17560
git-svn-id: https://develop.svn.wordpress.org/trunk@19675 602fd350-edb4-49c9-b593-d223f7449a82
|
2012-01-04 19:45:13 +00:00 |
|
Ryan Boren
|
676ba7043e
|
Use one space, not two, after trailing punctuation. fixes #19537
git-svn-id: https://develop.svn.wordpress.org/trunk@19593 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-12-13 23:45:31 +00:00 |
|
Dion Hulse
|
d70ddc49f9
|
Switch to sanitize_title_for_query() for Query sanitization (allows for pre-3.3 page slugs to be viewable), Don't update page slugs to new slug-types when the slug is not being changed, Don't issue a XHR if the page slug hasn't changed. Group effort props xknown, markjaquith, nacin. See #19292
git-svn-id: https://develop.svn.wordpress.org/trunk@19444 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-24 00:20:21 +00:00 |
|
Andrew Nacin
|
88b1b11435
|
Only enforce content/title/excerpt requirement in wp_insert_post() if the post type supports all three. Add a filter to allow this to be modified. fixes #18713.
git-svn-id: https://develop.svn.wordpress.org/trunk@19305 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-15 21:19:29 +00:00 |
|
Jon Cave
|
9c824b6687
|
Don't pass $post_type as get_page()'s $filter argument. Copy-and-paste error. Removal improves get_page_by_path() performance dramatically by stopping sanitize_post() being called. Fixes #19175.
git-svn-id: https://develop.svn.wordpress.org/trunk@19283 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-14 21:32:56 +00:00 |
|
Dion Hulse
|
522f890c32
|
Fix typo in [19231]. See #17579
git-svn-id: https://develop.svn.wordpress.org/trunk@19234 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-09 22:13:35 +00:00 |
|
Andrew Nacin
|
f3ba249747
|
Check post type and bail earlier in wp_get_attachment_url(). props mitchoyoshitaka, fixes #17579.
git-svn-id: https://develop.svn.wordpress.org/trunk@19231 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-09 19:20:33 +00:00 |
|
Andrew Nacin
|
057afbb44b
|
Don't set post_type QV in _post_format_request() when we're in the admin. props ethitter. fixes #18475.
git-svn-id: https://develop.svn.wordpress.org/trunk@19193 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-06 21:15:23 +00:00 |
|
Jon Cave
|
479b59bdb0
|
Return full WHERE clause from get_posts_by_author_sql() if the post type isn't registerd. Fixes SQL sytax on users list when 'post' is unregistered. Fixes #19116.
git-svn-id: https://develop.svn.wordpress.org/trunk@19117 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-11-02 17:06:34 +00:00 |
|
Ryan Boren
|
4399cf7610
|
Avoid E_STRICT notices. see #18975
git-svn-id: https://develop.svn.wordpress.org/trunk@19094 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-10-31 19:38:46 +00:00 |
|
Ryan Boren
|
a3f2a7ce55
|
Fix notices and logic errors in get_page_by_path(). Props duck_. see #17670
git-svn-id: https://develop.svn.wordpress.org/trunk@19075 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-10-28 19:32:19 +00:00 |
|
Ryan Boren
|
fd10e500e4
|
Pinking shears
git-svn-id: https://develop.svn.wordpress.org/trunk@19054 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-10-24 19:13:23 +00:00 |
|
Andrew Nacin
|
0853bf3d40
|
Correct docs for get_post_field(). props JustinSainton, fixes #19025.
git-svn-id: https://develop.svn.wordpress.org/trunk@19034 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-10-21 17:13:26 +00:00 |
|
Ryan Boren
|
df5f69fabc
|
In wp_trash_post(), rename the trash_post action to wp_trash_post to avoid collision with the wp_transition_post_status() trash_post state transition. Props SergeyBiryukov. fixes #15628
git-svn-id: https://develop.svn.wordpress.org/trunk@18974 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-10-14 18:39:31 +00:00 |
|
Ryan Boren
|
448700b2e7
|
Count only published posts when updating term counts. Fire term count updates on transition_post_status. Props joehoyle. see #17548
git-svn-id: https://develop.svn.wordpress.org/trunk@18932 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-10-10 20:52:44 +00:00 |
|
Ryan Boren
|
c3212d522e
|
Avoid refetching a post in get_post() when passed a post object that has already been raw sanitized. Clean up sanitize loop. Props scribu. fixes #18822
git-svn-id: https://develop.svn.wordpress.org/trunk@18846 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-30 19:06:18 +00:00 |
|
Ryan Boren
|
2678fd4f60
|
Restore sorting by post_name in get_pages(). Props SergeyBiryukov. fixes #18805
git-svn-id: https://develop.svn.wordpress.org/trunk@18845 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-30 18:12:14 +00:00 |
|
Peter Westwood
|
2421e0ecc6
|
Fire an action when a post type or taxonomy is registered so plugins can react. Fixes #18802 props simonwheatley.
git-svn-id: https://develop.svn.wordpress.org/trunk@18833 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-30 09:53:35 +00:00 |
|
Andrew Ozz
|
b969d2ea80
|
Clean up remnants from having negative Post_IDs, props markjaquith, fixes #18235
git-svn-id: https://develop.svn.wordpress.org/trunk@18823 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-29 21:47:52 +00:00 |
|
Andrew Nacin
|
cd0ad3ead4
|
Revert [18783], as it breaks term relationship counts for attachment taxonomies. see #17548.
git-svn-id: https://develop.svn.wordpress.org/trunk@18809 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-29 05:29:20 +00:00 |
|
Ryan Boren
|
f63662aa82
|
Count only published posts when updating term counts. Fire term count updates on transition_post_status. Props joehoyle. fixes #17548
git-svn-id: https://develop.svn.wordpress.org/trunk@18783 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-26 22:24:46 +00:00 |
|
Andrew Nacin
|
0f4a1e5e3c
|
delete_post_thumbnail(). props CoenJacobs, duck_. fixes #17895.
git-svn-id: https://develop.svn.wordpress.org/trunk@18767 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-24 19:31:38 +00:00 |
|
Jon Cave
|
b60222700e
|
Documentation fixes. See #18560.
- Add missing parameters
- Add missing @param data types
- s/format_where/where_format/
git-svn-id: https://develop.svn.wordpress.org/trunk@18753 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-22 12:02:31 +00:00 |
|
Ryan Boren
|
9651a4b5b0
|
Don't send page slugs through prepare() to avoid breaking octets in i18n page slugs. Props SergeyBiryukov. see #10249 #166687
git-svn-id: https://develop.svn.wordpress.org/trunk@18652 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-08 17:17:17 +00:00 |
|
Jon Cave
|
82c0f09c09
|
Fix typos in documentation (wp-includes/[i-z]). See #18560.
git-svn-id: https://develop.svn.wordpress.org/trunk@18639 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-09-05 19:08:15 +00:00 |
|
Mark Jaquith
|
8094c89b39
|
Cast to array in get_page_by_path() foreach
git-svn-id: https://develop.svn.wordpress.org/trunk@18627 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-08-31 06:46:16 +00:00 |
|
Dion Hulse
|
c370cd58f1
|
Display 'Edit Media' instead of 'Edit Post' for Attachments/Media in the admin bar. Props johnbillion. Fixes #18529
git-svn-id: https://develop.svn.wordpress.org/trunk@18613 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-08-28 03:39:06 +00:00 |
|
Peter Westwood
|
0c6d0349f4
|
Add a general filter to wp_unique_post_slug to allow for full customisation of the uniqueness functionality. Fixes #14111.
git-svn-id: https://develop.svn.wordpress.org/trunk@18546 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-08-13 21:00:24 +00:00 |
|
Mark Jaquith
|
48d294e7ea
|
Eliminate verbose rewrite rules for ambiguous rewrite structures, resulting in massive performance gains. props andy, otto42, duck_. Nice work everyone! see #16687
git-svn-id: https://develop.svn.wordpress.org/trunk@18541 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-08-12 01:55:08 +00:00 |
|
Ryan Boren
|
eda7d43e85
|
Deprecate get_userdatabylogin() and get_user_by_email(). Props scribu. fixes #18333
git-svn-id: https://develop.svn.wordpress.org/trunk@18513 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-08-05 16:57:31 +00:00 |
|
Ryan Boren
|
dbb0b7c8d6
|
Turn delete_meta() , get_post_meta_by_id(), update_meta(), delete_post_meta_by_key() into wrappers around the metadata API. Add back compat *_postmeta actions to metadata API. Props jgadbois. see #18196
git-svn-id: https://develop.svn.wordpress.org/trunk@18500 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-08-03 16:48:37 +00:00 |
|
Ryan Boren
|
431cc66a5f
|
phpdoc for all_items and menu_name. Props ocean90. fixes #18036
git-svn-id: https://develop.svn.wordpress.org/trunk@18472 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-07-26 21:31:36 +00:00 |
|
Ryan Boren
|
f39604511e
|
Fix CPT rewrite generation when turning on permalinks. Props andy. see #18040 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@18443 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-07-15 15:49:42 +00:00 |
|
Ryan Boren
|
acc022ea36
|
Unset filter when inserting/updating posts. For trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@18367 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-06-28 21:46:18 +00:00 |
|
Andrew Ozz
|
8649cfa2e9
|
Fix phpdoc for register_post_status(), props aaroncampbell, fixes #17900
git-svn-id: https://develop.svn.wordpress.org/trunk@18352 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-06-27 21:22:31 +00:00 |
|
Ryan Boren
|
cdd05b3c9f
|
Sanitize sort_column and sort_order in get_pages(). Escape search_term in WP_User_Search. Cast blog_id to int in get_blog_prefix(). Props duck_
git-svn-id: https://develop.svn.wordpress.org/trunk@18350 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-06-27 20:47:04 +00:00 |
|
Andrew Nacin
|
240e0f44d6
|
Introduce name_admin_bar label and the show_in_admin_bar (Add New menu) argument for post types. Allows for proper translations of these strings and provides for consolidated logic. fixes #16406.
git-svn-id: https://develop.svn.wordpress.org/trunk@18261 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-06-11 02:20:18 +00:00 |
|
Mark Jaquith
|
2aea6faf97
|
Fix mistaken use of publicly_queryable when public was what was intended. props nacin. fixes #17040
git-svn-id: https://develop.svn.wordpress.org/trunk@18234 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-06-10 17:02:03 +00:00 |
|
Peter Westwood
|
29a53e3eb0
|
Only show Comments are Closed when they are supported.
Tidy up the logic to be clearer.
Mark attachements as supporting comments.
Fixes #17568 props duck_
git-svn-id: https://develop.svn.wordpress.org/trunk@18211 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-06-09 11:12:39 +00:00 |
|
Ryan Boren
|
13a399b112
|
Use array_combine() to avoid a hard-coded copy of the post format slugs. Props mfields. fixes #17576
git-svn-id: https://develop.svn.wordpress.org/trunk@18083 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-05-31 19:52:38 +00:00 |
|
Ryan Boren
|
9eb9cb1e01
|
phpdoc typo fix. Props Caspie. fixes #17616
git-svn-id: https://develop.svn.wordpress.org/trunk@18080 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-05-31 15:23:21 +00:00 |
|
Ryan Boren
|
48fd7708b1
|
Rename duplicate delete_post and deleted_post actions to before_delete_post and after_delete_post. Props scribu. fixes #13731
git-svn-id: https://develop.svn.wordpress.org/trunk@18012 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-05-23 23:43:14 +00:00 |
|
Ryan Boren
|
da02537bb0
|
Mark import attachments as private. Schedule job to delete old import attachments. Introduce attachment context.
git-svn-id: https://develop.svn.wordpress.org/trunk@17999 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-05-22 23:25:28 +00:00 |
|
Andrew Nacin
|
b2a37f2965
|
Allow get_pages() to take multiple post statuses. see #8592.
git-svn-id: https://develop.svn.wordpress.org/trunk@17889 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-05-12 03:53:46 +00:00 |
|
Mark Jaquith
|
1271508bb2
|
Rename submenus to not clash with top level menus. Introduce all_items CPT string, defaulting to menu_name. fixes #17378
git-svn-id: https://develop.svn.wordpress.org/trunk@17864 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-05-11 20:09:28 +00:00 |
|
Andrew Nacin
|
f504e221e1
|
Switch from Panel/SubPanel to Screen in inline documentation and Codex links. props michaelh, fixes #17265.
git-svn-id: https://develop.svn.wordpress.org/trunk@17748 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-04-28 15:24:49 +00:00 |
|
Andrew Nacin
|
e2c4a1b26e
|
Use the post type object in get_posts_by_author_sql() and add a post type parameter to count_many_users_posts(). The formerly somewhat useless and now totally useless pub_priv_sql_capability filter is considered deprecated. fixes #17220.
git-svn-id: https://develop.svn.wordpress.org/trunk@17742 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-04-28 11:27:39 +00:00 |
|
Ryan Boren
|
c4d025eb56
|
Typo fix. Props ocean90, guyn. fixes #17234
git-svn-id: https://develop.svn.wordpress.org/trunk@17698 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-04-25 14:33:27 +00:00 |
|
Andrew Nacin
|
4876de9bed
|
Fix copypasta typo in docblock. props scribu, fixes #16384.
git-svn-id: https://develop.svn.wordpress.org/trunk@17540 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-03-23 18:42:59 +00:00 |
|
Mark Jaquith
|
0984bae175
|
Correctly handle PATHINFO CPTs and CTs that specify with_front=false. fixes #16807 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@17518 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-03-10 04:24:48 +00:00 |
|
Mark Jaquith
|
f490877ab4
|
Use with_front properly when creating rules for CPT archive pages. props scribu. fixes #16626 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@17514 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-03-09 05:40:52 +00:00 |
|
Ryan Boren
|
4d95849968
|
Don't query the post format for post types that don't support formats. Props nacin. fixes #16503 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@17429 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-02-09 17:13:28 +00:00 |
|
Mark Jaquith
|
118fb7f8ed
|
Do not use PHP5-only array_combine. props duck_. see #16459 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@17402 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-02-05 18:46:07 +00:00 |
|
Mark Jaquith
|
acfa8f4e60
|
No translation for post format slugs. Too fragile for the future. fixes #16459 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@17391 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-02-05 18:24:01 +00:00 |
|
Andrew Nacin
|
b735118cd7
|
Don't allow an empty rewrite slug for CPT. If you need something like this, do rewrite=>false. fixes #15082.
git-svn-id: https://develop.svn.wordpress.org/trunk@17298 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-01-14 15:42:56 +00:00 |
|
Andrew Nacin
|
dd4329a4bc
|
Limit post format queries to the post types registered for the taxonomy. see #16149.
git-svn-id: https://develop.svn.wordpress.org/trunk@17249 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-01-11 18:30:37 +00:00 |
|
Ryan Boren
|
eba71eb7c0
|
Bring out the shears.
git-svn-id: https://develop.svn.wordpress.org/trunk@17228 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-01-06 04:11:14 +00:00 |
|
Mark Jaquith
|
6a79affc88
|
Funnel unknown values to blank (standard) post format in set_post_format()
git-svn-id: https://develop.svn.wordpress.org/trunk@17224 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-01-05 22:26:55 +00:00 |
|
Andrew Nacin
|
0bd60eb228
|
Have menu_name work with show_in_menu = submenu. fixes #14832.
git-svn-id: https://develop.svn.wordpress.org/trunk@17197 602fd350-edb4-49c9-b593-d223f7449a82
|
2011-01-01 00:21:18 +00:00 |
|
Andrew Nacin
|
2fee9b3e7f
|
Correct the docs for register_post_status. fixes #15947, props simonwheatley.
git-svn-id: https://develop.svn.wordpress.org/trunk@17158 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-26 22:45:34 +00:00 |
|
Mark Jaquith
|
135bd083a4
|
Translate post format term names on the fly. props mfields. fixes #15899
git-svn-id: https://develop.svn.wordpress.org/trunk@17092 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-20 21:59:16 +00:00 |
|
Andrew Nacin
|
23339857e5
|
Docs for get_post_format_slugs(). props demetris, fixes #15867.
git-svn-id: https://develop.svn.wordpress.org/trunk@17073 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-20 10:22:06 +00:00 |
|
Peter Westwood
|
c80789036e
|
Allow a plugin to filter our slugs if it wants to. Fixes #15726
git-svn-id: https://develop.svn.wordpress.org/trunk@16960 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-15 17:56:25 +00:00 |
|
Ryan Boren
|
6dc2d07bc4
|
Pink trailing whites.
git-svn-id: https://develop.svn.wordpress.org/trunk@16900 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-13 21:21:50 +00:00 |
|
Ryan Boren
|
00f652341f
|
s/default/standard/ for post format slug.
git-svn-id: https://develop.svn.wordpress.org/trunk@16898 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-13 20:50:10 +00:00 |
|
Andrew Nacin
|
abd3871510
|
Use correct query var. see #15378.
git-svn-id: https://develop.svn.wordpress.org/trunk@16837 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-09 14:23:54 +00:00 |
|
Andrew Nacin
|
6fcde6c9fe
|
Remove post_type_supports check from register_post_type caps all together. fixes #14122.
git-svn-id: https://develop.svn.wordpress.org/trunk@16825 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-08 22:07:29 +00:00 |
|
Mark Jaquith
|
b105838594
|
Do not store empty _wp_old_slug values. fixes #15736
git-svn-id: https://develop.svn.wordpress.org/trunk@16820 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-08 21:22:16 +00:00 |
|
Mark Jaquith
|
956b191c60
|
Use is_page_type_hierarchical(). props nacin. see #15140
git-svn-id: https://develop.svn.wordpress.org/trunk@16819 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-08 21:17:01 +00:00 |
|
Mark Jaquith
|
08671532d3
|
Do not do slug logging/redirects for hierarchical post types. see #15140
git-svn-id: https://develop.svn.wordpress.org/trunk@16818 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-08 21:10:38 +00:00 |
|
Andrew Nacin
|
b613ab037c
|
Use pagination base for CPT archives. props scribu, fixes #15728.
git-svn-id: https://develop.svn.wordpress.org/trunk@16787 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-08 07:02:52 +00:00 |
|
Ryan Boren
|
fcfb406c7c
|
Apply wp_get_attachment_url to empty urls. Props filosofo. fixes #15494
git-svn-id: https://develop.svn.wordpress.org/trunk@16768 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-07 18:16:21 +00:00 |
|
Andrew Nacin
|
96e0e3b82f
|
Post format indexes. First pass. see #15378.
git-svn-id: https://develop.svn.wordpress.org/trunk@16705 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-03 10:13:17 +00:00 |
|
Andrew Nacin
|
6352189dd5
|
Remove sticky arg from post support. props michaelh, see #12702.
git-svn-id: https://develop.svn.wordpress.org/trunk@16698 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-02 23:16:04 +00:00 |
|
Mark Jaquith
|
4b8e7b1c5b
|
Missed a s/default/standard/ in [16679]. props PeteMall. see #15582.
git-svn-id: https://develop.svn.wordpress.org/trunk@16682 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-02 04:36:00 +00:00 |
|
Mark Jaquith
|
c821bc7ca2
|
The name of the standard post format is now Standard (might offer ability to change Default). fixes #15582
git-svn-id: https://develop.svn.wordpress.org/trunk@16679 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-02 03:19:14 +00:00 |
|
Mark Jaquith
|
c9690cf60b
|
Throw WP_Error if post_type passed to register_post_type() is longer than schema allows. props phrostypoison. fixes #13709
git-svn-id: https://develop.svn.wordpress.org/trunk@16670 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-01 20:43:39 +00:00 |
|
scribu
|
c6d9ed1f35
|
Remove archaic reference return in get_children(). Props filosofo. Fixes #12372
git-svn-id: https://develop.svn.wordpress.org/trunk@16667 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-01 20:23:57 +00:00 |
|
Ryan Boren
|
a7d80782f2
|
Prevent default post formats from entering the DB. see #15629 #15582
git-svn-id: https://develop.svn.wordpress.org/trunk@16662 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-01 20:03:39 +00:00 |
|
Ryan Boren
|
51879abf56
|
Export filtering. Props duck_. fixes #15197
git-svn-id: https://develop.svn.wordpress.org/trunk@16652 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-12-01 17:21:58 +00:00 |
|
scribu
|
40c993af3f
|
Fix 'timeinfo' cache invalidation. Fixes #14922
git-svn-id: https://develop.svn.wordpress.org/trunk@16537 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-22 21:45:45 +00:00 |
|
Andrew Nacin
|
e8dd42ce2a
|
Revert [15688], [15689], [15691]. Try again in 3.2. see #14966.
git-svn-id: https://develop.svn.wordpress.org/trunk@16535 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-22 17:17:26 +00:00 |
|
Andrew Nacin
|
4cfa4aaacf
|
Add the audio post format, the final format we plan to support. see #14746.
git-svn-id: https://develop.svn.wordpress.org/trunk@16534 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-22 17:05:14 +00:00 |
|
Mark Jaquith
|
94737b9d3b
|
Use "default" as the key (not "0") for the default post format string in the translation array. props josephscott
git-svn-id: https://develop.svn.wordpress.org/trunk@16477 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-19 04:32:33 +00:00 |
|
Andrew Nacin
|
ccea27cbe7
|
More param fixes, props duck_. see #14783.
git-svn-id: https://develop.svn.wordpress.org/trunk@16469 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-18 19:12:48 +00:00 |
|
Ryan Boren
|
4b33a0e9c4
|
Pinking shears
git-svn-id: https://develop.svn.wordpress.org/trunk@16438 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-17 18:47:34 +00:00 |
|
Mark Jaquith
|
55e0256967
|
esc_textarea() and application for obvious textarea escaping. props alexkingorg. fixes #15454
git-svn-id: https://develop.svn.wordpress.org/trunk@16431 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-17 17:12:01 +00:00 |
|
Andrew Nacin
|
b0abda23b6
|
Don't check post_type_supports in map_meta_cap. see #14122.
git-svn-id: https://develop.svn.wordpress.org/trunk@16422 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-17 06:21:34 +00:00 |
|
scribu
|
43a3b3b65d
|
Update some @since tags. Props demetris. Fixes #15438
git-svn-id: https://develop.svn.wordpress.org/trunk@16400 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-16 13:16:13 +00:00 |
|
Andrew Nacin
|
76a7d50069
|
Sanity cast. see #15192.
git-svn-id: https://develop.svn.wordpress.org/trunk@16389 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-15 18:06:57 +00:00 |
|
Andrew Nacin
|
0b7f397e9b
|
set_post_thumbnail(). fixes #15192.
git-svn-id: https://develop.svn.wordpress.org/trunk@16388 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-15 17:59:25 +00:00 |
|
Andrew Nacin
|
682b6a20b2
|
capability_type = page and no custom caps should also kick on map_meta_cap. see #14122.
git-svn-id: https://develop.svn.wordpress.org/trunk@16387 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-15 17:11:34 +00:00 |
|
scribu
|
32b416f959
|
Improve hook readability via curly brackets. Props jjj for initial patch. Fixes #15422
git-svn-id: https://develop.svn.wordpress.org/trunk@16365 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-14 15:50:02 +00:00 |
|
Andrew Nacin
|
812c44072a
|
Set map_meta_cap to true when capability_type = post and no custom caps are specified. see #14122.
git-svn-id: https://develop.svn.wordpress.org/trunk@16338 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-13 08:40:38 +00:00 |
|
Andrew Nacin
|
8d5463366a
|
Use term cache in get_post_format() to save a boatload of queries. see #15396.
git-svn-id: https://develop.svn.wordpress.org/trunk@16319 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-12 09:49:34 +00:00 |
|
Andrew Nacin
|
d8c91db1f4
|
Remove more create_function calls. props huichen, see #14424.
git-svn-id: https://develop.svn.wordpress.org/trunk@16313 602fd350-edb4-49c9-b593-d223f7449a82
|
2010-11-11 22:50:36 +00:00 |
|