$categories = get_the_category();
$separator = ' ';
$output = '';
if ( ! empty( $categories ) ) {
foreach( $categories as $category ) {
$output .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</a> (' . $category->count .')'.$separator;
}
echo trim( $output, $separator );
}
$('input[name="score"]').each(function(el){
$(this).attr("type", "text");
});
inputs[i].setAttribute('type', 'text');
// rutube
wp_embed_register_handler('rutube', '#https?:\/\/(www\.)?rutube\.ru\/(play|video)\/(.*?)$#i', 'wpdocs_embed_handler_rutube');
function wpdocs_embed_handler_rutube( $matches, $attr, $url, $rawattr ) {
$embed = sprintf(
'<iframe width="720" height="405" src="https://rutube.ru/%2$s/embed/%3$s" frameBorder="0" allow="clipboard-write" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>',
esc_attr($matches[1]),
esc_attr($matches[2]),
esc_attr($matches[3])
);
return $embed;
}
$args = array(
'id' => '', // ID элемента меню. Обязательный. Строка.
'title' => '', // Заголовок элемента меню. Обязательный. Строка.
'parent' => '', // ID родительского элемента меню. Строка.
'href' => '', // Ссылка для этого элемента меню. Строка.
'group' => false, // Является ли этот элемент группой. Логический. По умолчанию false
'meta' => array( // Массив дополнительных данных элемента. По умолчанию: пустой массив.
'html' => '', // Произвольный HTMl код, который будет добавлен в конце оборачивающего LI тега элемента меню.
'class' => '', // Атрибут тега 'class'
'rel' => '', // Атрибут тега 'rel'
'lang' => '', // Атрибут тега 'lang'
'dir' => '', // Атрибут тега 'dir'
'onclick' => '', // Атрибут тега 'onclick'
'target' => '', // Атрибут тега 'target'
'title' => '', // Атрибут тега 'title'
'tabindex' => '', // Атрибут тега 'tabindex'
),
)
$text = $_GET['text'];
$text = strip_tags($text, '<i><b>');