<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<?php _e( 'Comment navigation', 'editor' ); ?>
<?php previous_comments_link( __( '← Older Comments', 'editor' ) ); ?>
<?php next_comments_link( __( 'Newer Comments →', 'editor' ) ); ?>
<?php endif; // check for comment navigation ?>
<?php endif; // have_comments() ?>
<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<?php _e( 'Comments are closed.', 'editor' ); ?>
<?php endif; ?>
Как раз отрицательные рейтинги и dis like делать нельзя, необходим позитив иначе ваша, "Креативная идея" не заслуживает славы и известности))). Если это Креатив - это должно быть весело, поднимать настроение!
Phmphx: На самом деле, сам разработчик пишет что на yii2 его нет! Модуль комментов могу скинуть я делал для проекта www.selfiti.ru что бы посмотреть как работает, зарегистрируйся и залей фотку "Сделай селфи" появятся возможность комментировать... Но модуль комментарий и модуль сообщений 2 разные вещи, так как сообщение это намного сложнее + конечно хочется динамической подгрузки без обновления страницы и грамотная настройка серверной части, Вот что необходимо ! исходники с инструкцией ....насколько я знаю ещё не придумали для yii2 похожей вещи!
<?php
if ( post_password_required() ) {
return;
}
?>
<?php // You can start editing here -- including this comment! ?>
<?php if ( have_comments() ) : ?>
<?php
printf( _nx( 'One Comment', '%1$s Comments', get_comments_number(), 'comments title', 'editor' ),
number_format_i18n( get_comments_number() ), get_the_title() );
?>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<?php _e( 'Comment navigation', 'editor' ); ?>
<?php previous_comments_link( __( '← Older Comments', 'editor' ) ); ?>
<?php next_comments_link( __( 'Newer Comments →', 'editor' ) ); ?>
<?php endif; // check for comment navigation ?>
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 50,
'callback' => 'editor_comment'
) );
?>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<?php _e( 'Comment navigation', 'editor' ); ?>
<?php previous_comments_link( __( '← Older Comments', 'editor' ) ); ?>
<?php next_comments_link( __( 'Newer Comments →', 'editor' ) ); ?>
<?php endif; // check for comment navigation ?>
<?php endif; // have_comments() ?>
<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<?php _e( 'Comments are closed.', 'editor' ); ?>
<?php endif; ?>
<?php comment_form(); ?>