Powered by Blogger.

REPLACE BLANK SPACE WITH ‘-‘ IN WP TITLE



Get your wp title with ->get_the_title() method.
Replace space with “-” using ->str_replace() method.
Convert to lowercase letter using strtolower() method.

<?php echo strtolower(str_replace(' ', '-', get_the_title())); ?>

No comments