Is there a way to know if a post has been published through XML-RPC?
It’s all in the title, I’m looking for a way to know if a given post was published through XML-RPC, versus published by … Read more
It’s all in the title, I’m looking for a way to know if a given post was published through XML-RPC, versus published by … Read more
I want to insert a custom button between “Publish” button and “Move To Trash” link. What can I use to make this? Here … Read more
Last week our marketing team placed around 35 posts inside of draft due to some legal issues in our market. This week the … Read more
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for … Read more
I’m looking for a way to display a user’s first published post using their unique ID. I have a function that calls a … Read more
I’ve found this helpful snippet to make a delete post link on the front-end: <?php if (current_user_can(‘edit_post’, $post->ID)) echo “<a href=”” . wp_nonce_url(“/wp-admin/post.php?action=delete&post=$id”, … Read more
I have a custom post type with only 3 custom fields in it. $post_types = get_post_meta($post->ID,’post_types’,true); $post_taxonomies = get_post_meta($post->ID,’post_taxonomies’,true); $post_terms = get_post_meta($post->ID,’post_terms’,true); I … Read more
I want to list recent published posts of my wp blog and exclude certain posts of some categories. The following code works fine, … Read more
I’m trying to return a custom field as soon as a post gets published. I’m using the publish_post (or {status}_{post_type}) action, but it … Read more
I’m trying to fire two different actions on both publish and update. Neither should ever fire at the same time. The problem is … Read more