| Server IP : 213.132.222.41 / Your IP : 216.73.216.254 Web Server : Apache System : Linux plesk4.nlhosting.net 6.1.0-0.deb11.50-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1~deb11u1 (2026-07-02) x86_64 User : thecovenant ( 10927) PHP Version : 8.3.32 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/thecovenant.nl/httpdocs/new/wp-content/themes/neve/views/ |
Upload File : |
<?php
/**
* Archive Post view template.
*
* @package Neve
*/
$load_before_after_hooks = get_theme_mod( 'neve_blog_archive_layout', 'grid' ) !== 'default';
?>
<article id="<?php echo esc_attr( $args['post_id'] ); ?>" class="<?php echo esc_attr( $args['post_class'] ); ?>">
<div class="article-content-col">
<div class="content">
<?php
if ( $load_before_after_hooks ) {
/**
* Executes actions before rendering the post content.
*
* @since 2.11
*/
do_action( 'neve_loop_entry_before' );
}
echo $args['content']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
if ( $load_before_after_hooks ) {
/**
* Executes actions after rendering the post content.
*
* @since 2.11
*/
do_action( 'neve_loop_entry_after' );
}
?>
</div>
</div>
</article>