Code for removing….(dots from WP title)
-
Hello ?? this code is very useful ?? for WordPress doning job of renaming title posts after updating page to same title but without dots (……..)
I mean after submitting the post it removing dots from title automatically after refreshing the page
My question is this code is full , can any developer check it please and till us if it completed or not and where we should post it in themes I used hit Mag pro theme
Please help me
<?php $title = get_the_title(); $last_title = str_replace( '.', ' ' , $title ); $post_update = array( 'ID' => $post->ID, 'post_title' => $last_title, ); wp_update_post( $post_update ); ?>
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Code for removing….(dots from WP title)’ is closed to new replies.