文件操作 - next-prev.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/inc/pagination/next-prev.php
编辑文件内容
<?php namespace TotalTheme\Pagination; \defined( 'ABSPATH' ) || exit; /** * Next_Prev Pagination. */ class Next_Prev { /** * The current query. */ protected $query; /** * Constructor. */ public function __construct( $query = null ) { if ( $query ) { $this->query = $query; } else { global $wp_query; $this->query = $wp_query; } } /** * Renders the pagination. */ public function render() { $max_pages = \absint( $this->query->max_num_pages ?? 1 ); if ( ! $max_pages || 1 === $max_pages ) { return; } ?> <div class="page-jump wpex-clr"> <div class="alignleft newer-posts"><?php \previous_posts_link( '← ' . \esc_html__( 'Newer Posts', 'total' ) ); ?></div> <div class="alignright older-posts"><?php \next_posts_link( \esc_html__( 'Older Posts', 'total' ) . ' →' ); ?> </div> </div> <?php } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件