HEX
Server: Apache
System: Linux darrell.nocdirect.com 4.18.0-513.18.2.el8_9.x86_64 #1 SMP Sat Mar 30 06:10:41 EDT 2024 x86_64
User: joderbya (1358)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/joderbya/public_html/ss-servicos/wp-content/themes/bugspatrol/attachment.php
<?php
/**
 * Attachment page
 */
get_header(); 

while ( have_posts() ) { the_post();

	// Move bugspatrol_set_post_views to the javascript - counter will work under cache system
	if (bugspatrol_get_custom_option('use_ajax_views_counter')=='no') {
        do_action('trx_utils_filter_set_post_views', get_the_ID());
	}

	bugspatrol_show_post_layout(
		array(
			'layout' => 'attachment',
			'sidebar' => !bugspatrol_param_is_off(bugspatrol_get_custom_option('show_sidebar_main'))
		)
	);

}

get_footer();
?>