#18126 closed task (blessed) (fixed)
Expose image options on XML-RPC
Reported by: | koke | Owned by: | josephscott |
---|---|---|---|
Milestone: | 3.4 | Priority: | normal |
Severity: | normal | Version: | 3.2.1 |
Component: | XML-RPC | Keywords: | mobile has-patch commit dev-reviewed |
Focuses: | Cc: |
Description
To pick good defaults when inserting images from the mobile apps, it'd be nice to have the following options exposed:
- image_default_link_type
- image_default_size
- image_default_align
Attachments (1)
Change History (11)
#4
@
13 years ago
Defaults look like this to me:
mysql> select * from wp_options where option_name LIKE 'image%'; +-----------+---------+-------------------------+--------------+----------+ | option_id | blog_id | option_name | option_value | autoload | +-----------+---------+-------------------------+--------------+----------+ | 76 | 0 | image_default_align | | yes | | 74 | 0 | image_default_link_type | file | yes | | 75 | 0 | image_default_size | | yes | +-----------+---------+-------------------------+--------------+----------+
For image_default_size
, trunk/wp-admin/includes/media.php#L730:
// if $check is not enabled, default to the first available size that's bigger than a thumbnail
For image_default_align
, defaults to 'none' in trunk/wp-admin/includes/media.php#L682
Note: See
TracTickets for help on using
tickets.
This looks fine to me, just one question. What are the legitimate values for these options? My copy of WP -trunk has empty values for all three.