bobbydonovan
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Why limit of 20 on listingsI also found this a little perplexing. Perhaps can we see pagination in a future release?
Forum: Plugins
In reply to: [W3 Total Cache] Garbage collection – not always workingDid you have any success here? I’m also experiencing issues with garbage collection.
Forum: Plugins
In reply to: [W3 Total Cache] Cache files are never deletedDid you have any joy investigating this? I’m not having much luck with the garbage collection removing pages that should be expired.
Forgot to add, the other half of that example above is the function below, just in case someone wants it.
add_action('sitewide_tags_post_insert', 'custom_save_publish_state'); function custom_save_publish_state($post) { if ($post->ID) { $existing_post = get_post($post->ID); $post->post_status = $existing_post->post_status; } return $post; }Two small modifications were required to make this work for me.
On both lines 56 and 92 of the core plugin file, change:
$postax = get_taxonomies( array( ‘_builtin’=>false,’object_type’=>array( $post_type ) ), ‘objects’ );
to the following
$postax = get_object_taxonomies( $post_type , ‘objects’ );
Viewing 5 replies - 1 through 5 (of 5 total)