| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/themes/grace-church/templates/_parts/ |
Upload File : |
<?php
if (!$post_data['post_protected']) {
?>
<section class="post_featured">
<?php
if (!empty($post_options['dedicated'])) {
echo ($post_options['dedicated']);
} else if ($post_data['post_thumb']) {
$page_style = grace_church_get_custom_option('single_style');
?>
<div class="post_thumb post_nav"<?php echo ($page_style=='single-portfolio-fullscreen' ? ' style="background-image:url('.esc_url($post_data['post_attachment']).');"' : ''); ?>>
<?php
if ($page_style!='single-portfolio-fullscreen') echo ($post_data['post_thumb']);
$cur = get_post();
$args = array(
'post_type' => $post_data['post_type'],
'posts_per_page' => -1,
'post_status' => current_user_can('read_private_pages') && current_user_can('read_private_posts') ? array('publish', 'private') : 'publish',
'ignore_sticky_posts' => true
);
$args = grace_church_query_add_posts_and_cats($args, '', $post_data['post_type'],
!empty($post_data['post_terms'][$post_data['post_taxonomy']]->terms_ids)
? join(',', $post_data['post_terms'][$post_data['post_taxonomy']]->terms_ids)
: '', $post_data['post_taxonomy']);
$args = grace_church_query_add_sort_order($args);
$q = new WP_Query( $args );
$prev = $next = null;
$found = false;
while ( $q->have_posts() ) { $q->the_post();
if (!$found) {
if ($cur->ID == get_the_ID())
$found = true;
else
$prev = get_post(get_the_ID());
} else {
$next = get_post(get_the_ID());
break;
}
}
wp_reset_postdata();
if ( $prev ) {
$link = get_permalink($prev->ID).'#top_of_page';
$desc = grace_church_strshort($prev->post_title, 30);
?>
<a class="post_nav_item post_nav_prev" href="<?php echo esc_url($link); ?>">
<span class="post_nav_info">
<span class="post_nav_info_title"><?php esc_html_e('Previous item', 'grace-church'); ?></span>
<span class="post_nav_info_description"><?php echo ($desc); ?></span>
</span>
</a>
<?php
}
if ( $next ) {
$link = get_permalink( $next->ID ).'#top_of_page';
$desc = grace_church_strshort($next->post_title, 30);
?>
<a class="post_nav_item post_nav_next" href="<?php echo esc_url($link); ?>">
<span class="post_nav_info">
<span class="post_nav_info_title"><?php esc_html_e('Next item', 'grace-church'); ?></span>
<span class="post_nav_info_description"><?php echo ($desc); ?></span>
</span>
</a>
<?php
}
?>
</div>
<?php
}
?>
</section>
<?php
}
?>