seo
/ by
The PHP function Copy the following PHP code snippet to your functions.php file: //Calculate the Estimated reading time of any page or post function site_estimated_reading_time( $content = '', $wpm = 250 ) { $clean_content = strip_shortcodes( $content ); $clean_content = strip_tags( $clean_content ); $word_count = str_word_count( $clean_content ); $time = ceil( $word_count / $wpm ); […]
Read more »
security
The WP snippet Function code below hides the user with username XXXXXX from the list of users on your WordPress website (Users >> All Users). Of course, you need to change both instances of XXXXXX to the username of your choice. Copy this code into your theme’s functions.php file. You can find your theme’s functions.php […]