HEX
Server: nginx/1.20.2
System: Linux racknerd-d3d1ff4 3.10.0-693.11.6.el7.x86_64 #1 SMP Thu Jan 4 01:06:37 UTC 2018 x86_64
User: www (1000)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.movieloversky.com/wp-content/plugins/trx_addons/templates/tpl.post-counters.php
<?php
/**
 * The template to show post's counters: views, likes, comments
 *
 * Used for widget and shortcode Recent News and many other shortcodes
 *
 * @package WordPress
 * @subpackage ThemeREX Addons
 * @since v1.0
 */

$trx_addons_args = get_query_var('trx_addons_args_post_counters');
$trx_addons_counters = !empty($trx_addons_args['counters']) ? $trx_addons_args['counters'] : 'views,likes,comments';
?>
<div class="post_counters<?php echo !empty($trx_addons_args['class']) ? ' '.esc_attr($trx_addons_args['class']) : ''; ?>"><?php

	// Counters
	trx_addons_get_post_counters($trx_addons_counters, true);
	
	// Socials share
	if ( !empty($trx_addons_args['share']) ) {
		$trx_addons_output = trx_addons_get_share_links(array(
				'type' => 'drop',
				'caption' => esc_html__('Share', 'trx_addons'),
				'echo' => false
			));
		if ($trx_addons_output) {
			?><div class="post_counters_item post_share"><?php trx_addons_show_layout($trx_addons_output); ?></div><?php
		}
	}

	// Edit page link
	//edit_post_link( esc_html__( 'Edit', 'trx_addons' ), '<span class="post_counters_item post_counters_edit trx_addons_icon-pencil">', '</span>' );
	edit_post_link( esc_html__( 'Edit', 'trx_addons' ), '', '', 0, 'post_counters_item post_counters_edit trx_addons_icon-pencil' );

?></div><?php