Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/monara/public_html/test.athavaneng.com/themes.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230
Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
component.php 0000644 00000016637 15073227756 0007312 0 ustar 00 the_comments( array $args = [] )`
*
* @link https://wordpress.org/plugins/amp/
*/
class Component implements Component_Interface, Templating_Component_Interface {
/**
* Gets the unique identifier for the theme component.
*
* @return string Component slug.
*/
public function get_slug() : string {
return 'comments';
}
/**
* Adds the action and filter hooks to integrate with WordPress.
*/
public function initialize() {
add_action( 'wp_enqueue_scripts', array( $this, 'action_enqueue_comment_reply_script' ) );
add_filter( 'comment_form_default_fields', array( $this, 'filter_default_fields_markup' ) );
add_filter( 'comment_form_defaults', array( $this, 'filter_default_markup' ) );
}
/**
* Gets template tags to expose as methods on the Template_Tags class instance, accessible through `kadence()`.
*
* @return array Associative array of $method_name => $callback_info pairs. Each $callback_info must either be
* a callable or an array with key 'callable'. This approach is used to reserve the possibility of
* adding support for further arguments in the future.
*/
public function template_tags() : array {
return array(
'the_comments' => array( $this, 'the_comments' ),
);
}
/**
* Enqueues the WordPress core 'comment-reply' script as necessary.
*/
public function action_enqueue_comment_reply_script() {
// If the AMP plugin is active, return early.
if ( kadence()->is_amp() ) {
return;
}
// Enqueue comment script on singular post/page views only.
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
/**
* Displays the list of comments for the current post.
*
* Internally this method calls `wp_list_comments()`. However, in addition to that it will render the wrapping
* element for the list, so that must not be added manually. The method will also take care of generating the
* necessary markup if amp-live-list should be used for comments.
*
* @param array $args Optional. Array of arguments. See `wp_list_comments()` documentation for a list of supported
* arguments.
*/
public function the_comments( array $args = array() ) {
$args = array_merge(
$args,
array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 60,
)
);
$amp_live_list = kadence()->using_amp_live_list_comments();
if ( $amp_live_list ) {
$comment_order = get_option( 'comment_order' );
$comments_per_page = get_option( 'page_comments' ) ? (int) get_option( 'comments_per_page' ) : 10000;
$poll_inverval = MINUTE_IN_SECONDS * 1000;
?>
*' : '' );
$show_web = kadence()->option( 'comment_form_remove_web' );
$fields['author'] = '';
} else {
$fields['url'] = '';
}
return apply_filters( 'kadence_comment_fields', $fields );
}
/**
* Adds a div wrapper around the author, email and url fields.
*
* @param array $args the contact form args.
* @return array Filtered markup.
*/
public function filter_default_markup( $args ) {
$commenter = wp_get_current_commenter();
$args['comment_field'] = '';
return apply_filters( 'kadence_comment_args', $args );
}
/**
* Adds a pagination reference point attribute for amp-live-list when theme supports AMP.
*
* This is used by the navigation_markup_template filter in the comments template.
*
* @link https://www.ampproject.org/docs/reference/components/amp-live-list#pagination
*
* @param string $markup Navigation markup.
* @return string Filtered markup.
*/
public function filter_add_amp_live_list_pagination_attribute( string $markup ) : string {
return preg_replace( '/(\s*<[a-z0-9_-]+)/i', '$1 pagination ', $markup, 1 );
}
}