我正试图限制在帖子内容中出现的标签链接的最大数量。下面是我的代码。我不知道如何修理它。
function link_words( $text ) {
$replace_times=3;
$replace = array();
$tags = get_tags();
if ( $tags ) {
foreach ( $tags as $tag ) {
$replace[ $tag->name, $replace_times ] = sprintf( \'<a href="%s">%s</a>\', esc_url( get_term_link( $tag ) ), esc_html( $tag->name ) );
}
}
$text = str_replace( array_keys($replace), $replace, $text );
return $text;
}
add_filter( \'the_content\', \'link_words\' );