Files
revision/inc/load-nextpost.php
2025-08-21 14:40:43 +02:00

319 lines
6.9 KiB
PHP

<?php
/**
* Load Load Next Post via AJAX.
*
* @package Revision
*/
/**
* Retrieve next post that is adjacent to current post.
*/
function csco_nextpost_get_id() {
global $post;
$next_post = null;
// Default arguments.
$args = array(
'fields' => 'ids',
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'orderby' => 'date',
'order' => 'ASC',
'date_query' => array(
'after' => get_the_time( 'Y-m-d H:i:s', get_queried_object_id() ),
),
'post__not_in' => array( get_queried_object_id() ),
'ignore_sticky_posts' => true,
);
if ( get_theme_mod( 'post_load_nextpost_reverse', false ) ) {
$args['order'] = 'DESC';
$args['date_query'] = array(
'before' => get_the_time( 'Y-m-d H:i:s', get_queried_object_id() ),
);
}
if ( get_theme_mod( 'post_load_nextpost_same_category', false ) ) {
$terms = wp_get_post_terms( $post->ID, 'category', array( 'fields' => 'ids' ) );
if ( ! empty( $terms ) ) {
$args['tax_query'] = array(
array(
'taxonomy' => 'category',
'field' => 'term_id',
'terms' => $terms,
),
);
}
}
// Run custom query.
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
$next_post = array_shift( $query->posts );
}
wp_reset_postdata();
return $next_post;
}
/**
* Localize the main theme scripts.
*/
function csco_nextpost_more_js() {
if ( ! csco_get_state_load_nextpost() ) {
return;
}
if ( ! is_singular( 'post' ) ) {
return false;
}
$ajax_type = version_compare( get_bloginfo( 'version' ), '4.7', '>=' ) ? 'ajax_restapi' : 'ajax';
$ajax_type = apply_filters( 'ajax_load_nextpost_method', $ajax_type );
$localize = array(
'type' => $ajax_type,
'not_in' => (array) get_queried_object_id(),
'next_post' => csco_nextpost_get_id(),
'current_user' => get_current_user_id(),
'nonce' => wp_create_nonce( 'csco-load-nextpost-nonce' ),
'rest_url' => esc_url( get_rest_url( null, '/csco/v1/more-nextpost' ) ),
'url' => admin_url( 'admin-ajax.php' ),
'current_lang' => csco_get_current_language(),
'current_locale' => get_locale(),
);
wp_localize_script( 'csco-scripts', 'csco_ajax_nextpost', $localize );
}
add_action( 'wp_enqueue_scripts', 'csco_nextpost_more_js', 99 );
/**
* Get More Post
*/
function csco_load_nextpost() {
global $csco_related_not_in;
global $wp_query;
global $post;
global $more;
// Check Nonce.
wp_verify_nonce( null );
csco_set_ajax_lang();
csco_set_ajax_locale();
$not_in = array();
$next_post = null;
if ( isset( $_POST['not_in'] ) ) { // Input var ok.
$not_in = (array) wp_unslash( $_POST['not_in'] ); // Input var ok.
}
if ( isset( $_POST['next_post'] ) ) { // Input var ok.
$post_id = (int) $_POST['next_post']; // Input var ok.
}
if ( isset( $_POST['current_user'] ) ) { // Input var ok.
wp_set_current_user( (int) $_POST['current_user'] ); // Input var ok.
}
// Get Post.
ob_start();
if ( isset( $post_id ) ) {
// Add post id for filter.
array_push( $not_in, (string) $post_id );
// Set global filter.
$csco_related_not_in = $not_in;
// Query Args.
$args = array(
'p' => $post_id,
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) :
$query->the_post();
// Set wp_query data.
$wp_query = $query;
$wp_query->is_single = true;
$wp_query->is_singular = true;
// Set global more.
$more = 1;
?>
<div class="cs-nextpost-section" data-title="<?php the_title_attribute(); ?>"
data-url="<?php echo esc_url( get_permalink() ); ?>">
<?php do_action( 'csco_load_nextpost_before' ); ?>
<div <?php csco_site_content_class(); ?>>
<?php do_action( 'csco_site_content_start' ); ?>
<div class="cs-container">
<?php do_action( 'csco_main_content_before' ); ?>
<div id="content" class="cs-main-content">
<?php do_action( 'csco_main_content_start' ); ?>
<div id="primary" class="cs-content-area">
<?php do_action( 'csco_main_before' ); ?>
<?php
// Single before hook.
do_action( 'csco_post_before' );
// Include singular template.
get_template_part( 'template-parts/content-singular' );
// Single after hook.
do_action( 'csco_post_after' );
// Set next post.
$next_post = csco_nextpost_get_id();
?>
<?php do_action( 'csco_main_after' ); ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php do_action( 'csco_main_content_after' ); ?>
</div>
<?php do_action( 'csco_site_content_end' ); ?>
</div>
<?php do_action( 'csco_load_nextpost_after' ); ?>
</div>
<?php
endwhile;
endif;
wp_reset_postdata();
}
$content = ob_get_clean();
if ( ! $content ) {
$next_post = null;
}
// Return Result.
$result = array(
'not_in' => $not_in,
'next_post' => $next_post,
'content' => $content,
'title' => get_the_title(),
);
return $result;
}
/**
* AJAX Load Nextpost
*/
function csco_ajax_load_nextpost() {
// Check Nonce.
check_ajax_referer( 'csco-load-nextpost-nonce', 'nonce' );
// Get Post.
$data = csco_load_nextpost();
// Return Result.
wp_send_json_success( $data );
}
add_action( 'wp_ajax_csco_ajax_load_nextpost', 'csco_ajax_load_nextpost' );
add_action( 'wp_ajax_nopriv_csco_ajax_load_nextpost', 'csco_ajax_load_nextpost' );
/**
* Nextpost API Response
*
* @param array $request REST API Request.
*/
function csco_load_nextpost_restapi( $request ) {
$params = $request->get_params();
// Get Data.
$data = array(
'success' => true,
'data' => csco_load_nextpost(),
);
// Return Result.
return rest_ensure_response( $data );
}
/**
* Register REST Nextpost Routes
*/
function csco_register_nextpost_route() {
register_rest_route(
'csco/v1',
'/more-nextpost',
array(
'methods' => WP_REST_Server::CREATABLE,
'callback' => 'csco_load_nextpost_restapi',
'permission_callback' => function () {
return true;
},
)
);
}
add_action( 'rest_api_init', 'csco_register_nextpost_route' );
/**
* Filter all auto load posts from related.
*
* @param object $data The query.
*/
function csco_nextpost_filter_related( $data ) {
global $csco_related_not_in;
if ( ! is_single() ) {
return $data;
}
if ( isset( $data->query_vars['query_type'] ) && 'related' === $data->query_vars['query_type'] ) {
// Exclude next post.
if ( csco_get_state_load_nextpost() ) {
$next_post = csco_nextpost_get_id();
$data->query_vars['post__not_in'][] = $next_post ? $next_post : false;
}
// Exclude loaded posts.
$data->query_vars['post__not_in'] = array_merge(
(array) $data->query_vars['post__not_in'],
(array) $csco_related_not_in
);
}
return $data;
}
add_action( 'pre_get_posts', 'csco_nextpost_filter_related' );