_make_web_ftp_clickable_cb()
Callback to convert URL match to HTML A element.
This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
Эта функция считается внутренней для использования самим ядром. Не рекомендуется использовать эту функцию в своем коде.
Хуки из функции
Возвращает
Строку
. HTML A element with URL address.
Использование
_make_web_ftp_clickable_cb( $matches );
- $matches(массив) (обязательный)
- Single Regex Match.
Список изменений
С версии 2.3.2 | Введена. |
Код _make_web_ftp_clickable_cb() make web ftp clickable cb WP 6.1.1
function _make_web_ftp_clickable_cb( $matches ) { $ret = ''; $dest = $matches[2]; $dest = 'http://' . $dest; // Removed trailing [.,;:)] from URL. $last_char = substr( $dest, -1 ); if ( in_array( $last_char, array( '.', ',', ';', ':', ')' ), true ) === true ) { $ret = $last_char; $dest = substr( $dest, 0, strlen( $dest ) - 1 ); } $dest = esc_url( $dest ); if ( empty( $dest ) ) { return $matches[0]; } if ( 'comment_text' === current_filter() ) { $rel = 'nofollow ugc'; } else { $rel = 'nofollow'; } /** This filter is documented in wp-includes/formatting.php */ $rel = apply_filters( 'make_clickable_rel', $rel, $dest ); $rel = esc_attr( $rel ); return $matches[1] . "<a href=\"$dest\" rel=\"$rel\">$dest</a>$ret"; }