-
plugin
New and Updated Plugins Oct. 5, 2018
New Plugins Snow Monkey Blocks https://www.wp-plugin-api.com/version/snow-monkey-blocks/ https://snow-monkey.2inc.org/snow-monkey-blocks/ Updated Plugins WordFence version 7.1.15 https://www.wp-plugin-api.com/version/wordfence-7-1-15/ Looking for other plugins? Submit your request from our Request Form. -
plugin
Updated Plugins Sept. 28, 2018
Updated Plugins WordPress SEO 8.3 https://www.wp-plugin-api.com/version/wordpress-seo-8-3/ Simple Slug Translate 2.2.0 https://www.wp-plugin-api.com/version/simple-slug-translate-2-2-0/ -
wpcf7_mail_sent
Save Contact Form 7 submitted content to post
An example to save submitted content as a post add_action(‘wpcf7_mail_sent’, ‘hoge_wpcf7_insert_post’, 10, 1); function hoge_wpcf7_insert_post(){ $submission = WPCF7_Submission::get_instance(); if ( $submission ) { $formdata = $submission->get_posted_data(); $email = $formdata[‘your-email’]; $name = $formdata[‘your-name’]; $new_post = array( ‘post_type’ => ‘post’, ‘post_title’ => $formdata[‘your-email’] . ‘ ‘ . $formdata[‘your-name’] , ‘post_status’ => ‘draft’, ‘post_content’ => $formdata[‘your-message’] ); $post_id = wp_insert_post( $new_post ); // insert as post meta add_post_meta( $post_id, ‘some_meta’, $formdata[‘some_meta’]); } } -
plugin
Updated Plugins Sept. 21, 2018
Elementor version 2.2.4 https://www.wp-plugin-api.com/version/elementor-2-2-4/ Contact Form 7 Google Analytics https://www.wp-plugin-api.com/version/cf7-google-analytics-1-7-5/ wp-migrate-db 1.0.4 https://www.wp-plugin-api.com/version/wp-migrate-db-1-0-4/ wordfence 7.1.12 https://www.wp-plugin-api.com/version/wordfence-7-1-12/ buddypress 3.2.0 https://www.wp-plugin-api.com/version/buddypress-3-2-0/ Yoast SEO 8.2.1 https://www.wp-plugin-api.com/version/wordpress-seo-8-2-1/ -
plugin
Updated Plugins Sept. 14, 2018
Yoast SEO (wordpress-seo) version 8.2 https://www.wp-plugin-api.com/version/wordpress-seo-8-2/ WordFence version 7.1.12 https://www.wp-plugin-api.com/version/wordfence-7-1-12/ -
plugin
Updated Plugins Sept 9, 2018
contact-form-7 version 5.0.4 https://www.wp-plugin-api.com/version/contact-form-7-5-0-4/ jetpack version 6.5 https://www.wp-plugin-api.com/version/jetpack-6-5/ wordpress-seo version 8.1.2 https://www.wp-plugin-api.com/version/wordpress-seo-8-1-2/ -
core
WordPress 4.9.7 and 4.9.8 comparison
https://www.wp-plugin-api.com/diff/?source1=wordpress-4.9.7&source2=wordpress-4.9.8&ts=&diff_core=caccdffdfc&_wp_http_referer=%2Fdiff%2F Compare 4.9.7 to 4.9.8 -
news
New Feature! Check differences between versions
Now you can check differences between WordPress Core versions / Plugins versions. https://www.wp-plugin-api.com/diff/ To add your plugin of interest, please submit your request from our Request Form: https://www.wp-plugin-api.com/request-form/ -
the_generator
Remove the version number from pages and feeds
// remove version info from head and feeds add_filter(‘the_generator’, ‘digwp_complete_version_removal’); function digwp_complete_version_removal() { return ”; } Thanks digwp.com https://digwp.com/2012/10/customizing-wordpress-feeds/ -
gutenberg_can_edit_post_type
Disable Gutenberg editor
add_filter(‘gutenberg_can_edit_post_type’, ‘__return_false’); https://coliss.com/articles/blog/wordpress/how-to-disable-gutenberg.html