我正在尝试将用逗号分隔的每个单词或多个单词自动添加到现有的 url 中。
我有网址可以说http://stackoverflow.com/search?q=HERE IS THAT TEXT
。
我有这个功能:
function movie_cast( $atts, $content = null ) {
return '<div class="movie_cast">Cast: '.$content.'</div>';
}
add_shortcode( 'movie_cast', 'movie_cast' );
我正在使用它:[movie_cast]Actor 1, Actor 2[/movie_cast]
输出只是文本:Actor 1, Actor 2
我怎样才能得到这样的输出:<a href="http://stackoverflow.com/search?q=Actor 1">Actor 1</a>, <a href="http://stackoverflow.com/search?q=Actor 2">Actor 2</a>