skip to Main Content

Can hashtags & cashtags be linked in WordPress comments?

Ok, so I have managed to make it work for the_content, by adding this line in functions.php: add_filter('the_content', 'my_hashcash_class'); function my_hashcash_class($content){ $content = preg_replace('/($|#)(w+)[^w".;]/s', '<a href="https://www.mywebsite.com/?s=2">12</a> ', $content); return $content; } The above code works perfectly with the WordPress filter…

VIEW QUESTION
Back To Top
Search