InDesign to WordPress workflow

I’m working on a project for a monthly InDesign-based magazine that enables them to put their content online via WordPress. The current workflow is either: Copy/pasting from InDesign to a Word document (by the magazine staff with access to InDesign) and then copy/pasting from Word to the various fields in WP (by an intern without … Read more

How can I set a draft page as parent without publishing?

Anyone know a way round this? http://wordpress.org/support/topic/set-draft-page-as-parent I can’t risk publishing as a public-facing system updates periodically from the same install. 5 s 5 This works for me: add_filter(‘page_attributes_dropdown_pages_args’, ‘my_attributes_dropdown_pages_args’, 1, 1); function my_attributes_dropdown_pages_args($dropdown_args) { $dropdown_args[‘post_status’] = array(‘publish’,’draft’); return $dropdown_args; }

How can I make it so the Add New Post page has Visibility set to Private by default?

I’m trying to create a plugin that alters the Add New Post page so the Visibility field says “Private” by default: Status: Draft Visibility: **Private** Publish immediately [Publish] …as opposed to what WordPress normally assumes: Status: Draft Visibility: **Public** Publish immediately [Publish] At the moment, I’m using the “wp_insert_post_data” filter, and that is allowing me … Read more

Hide permalink and preview button and link on custom post

anyone know how to custom box that contain “Publish,save draft,and preview button” ? i’ll hide all button except Publish button. and same as “change permalink” also “view,delete,edit” link inside post how to hide the permalink and view link ? here the illustration what i talking about. Customizing Publish Button From Original WordPress Customizing post link … Read more

add action only on post publish – not update

I have action which adds meta field with value on post publish. Problem is that when I update post meta field is reset to default value. I already tried ‘new_to_publish’ instead of ‘publish_post’ but it doesn’t work. add_action(‘publish_post’, ‘add_custom_field_automatically’); function add_custom_field_automatically($post_ID) { global $wpdb; if(!wp_is_post_revision($post_ID)) { update_post_meta($post_ID, ‘votes_count’, ‘0’); } } Still can’t make it … Read more