Change ‘wp_term_taxonomy’ to your term_taxonomy table name and taxonomy to the names you’re changing
UPDATE wp_term_taxonomy SET taxonomy = ‘franchise-state’ WHERE taxonomy = ‘aioseo-location-category’Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
UPDATE wp_term_taxonomy SET taxonomy = ‘franchise-state’ WHERE taxonomy = ‘aioseo-location-category’Continue reading
UPDATE wp_posts SET post_type = ‘franchise-location’ WHERE post_type = ‘aioseo-location’Continue reading
add_filter( ‘aioseo_classic_editor_disable_emoji_script’, ‘__return_true’ );Continue reading
$attributes = [ ‘og:site_name’ => ”, ‘og:type’ => ”, ‘og:title’ => ”, ‘og:description’ => ”, ‘og:url’ => ”, ‘fb:app_id’ => ”, ‘fb_admins’ => ”, ‘og:image’ => ”, ];Continue reading
https://www.facebook.com/profile.php?id=61561561635100Continue reading
add_filter( “aioseo_save_term”, “aioseo_filter_term_data” ); function aioseo_filter_term_data( $term ) { if ( 12 === (int) $term->term_id ) { $term->title = ‘Some new title here’; } return $term; }Continue reading
add_filter( “aioseo_save_post”, “aioseo_filter_post_data” ); function aioseo_filter_post_data( $post ) { if ( 10 === (int) $post->post_id ) { $post->title = ‘Some new title here’; } return $post; }Continue reading