Type: php
Duplicate Posts and Pages
// Add the duplicate link to action list for post_row_actions // for “post” and custom post types add_filter( ‘post_row_actions’, ‘rd_duplicate_post_link’, 10, 2 ); // for “page” post type add_filter( ‘page_row_actions’, ‘rd_duplicate_post_link’, 10, 2 ); function rd_duplicate_post_link( $actions, $post ) {…Continue reading
Shortcode to show Thumbnail
add_shortcode(‘thumbnail’, ‘thumbnail_in_content’); function thumbnail_in_content($atts) { global $post; return get_the_post_thumbnail($post->ID); }Continue reading
Add Image Alt Text automatic (copy)
function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if ( preg_match( ‘/(title=[“‘].*?[“‘])/’, $html, $matches ) ) { // Get the title $title = substr( $matches[0], 7, -1 ); // Check if the image has…Continue reading
Untitled Snippet
Disable auto – trash emptying
function wpb_remove_schedule_delete() { remove_action( ‘wp_scheduled_delete’, ‘wp_scheduled_delete’ ); } add_action( ‘init’, ‘wpb_remove_schedule_delete’ );Continue reading
php code
Don’t stripe double quotes for outgoing Automator webhooks
add_filter( ‘automator_send_webhook_get_fields_should_strip_qoutes’, ‘__return_false’ );Continue reading
Disable Uncanny Automator Object Cache
add_filter( ‘automator_disable_object_cache’, ‘__return_true’, 99, 2 );Continue reading