Php 在wordpress中对自定义表进行分页时出错

Php 在wordpress中对自定义表进行分页时出错,php,pagination,wordpress,Php,Pagination,Wordpress,正如标题所说,我有一个带有分页的自定义表的代码。但我的错误是它没有重定向到页码(总是第1页的结果)。我的代码是: add_filter( 'the_content', 'get_scrapy_scraped' ); function get_scrapy_scraped( $content ) { include_once('paginator.class.php'); global $wpdb; if ( ! is_page( 'jobs' ) ) //when jobs

正如标题所说,我有一个带有分页的自定义表的代码。但我的错误是它没有重定向到页码(总是第1页的结果)。我的代码是:

add_filter( 'the_content', 'get_scrapy_scraped' );

function get_scrapy_scraped( $content )
{
include_once('paginator.class.php');

    global $wpdb;

    if ( ! is_page( 'jobs' ) ) //when jobs is read
        return $content;
        $query = "SELECT COUNT(*) FROM wp_careers";
$result = mysql_query($query) or die(mysql_error());
$num_rows = mysql_fetch_row($result);

$pages = new Paginator;
$pages->items_total = $num_rows[0];
$pages->mid_range = 9; // Number of pages to display. Must be odd and > 3
$pages->paginate();

echo $pages->display_pages();
echo "<span class=\"\">".$pages->display_jump_menu().$pages->display_items_per_page()."</span>";

$query = "SELECT * FROM wp_careers ORDER BY Job_Name ASC $pages->limit";
$result = mysql_query($query) or die(mysql_error());

echo "<table>";
echo "<tr><th>Job Name</th><th>Department/Location</th><th>Information</th><th>Apply Links</th></tr>";
while($row = mysql_fetch_row($result))
{
    echo "<tr><td>$row[3]</td><td>$row[1]</td><td>$row[0]</td><td>$row[2]</td></tr>\n";

}
echo "</table>";

echo $pages->display_pages();
echo "<p>Page: $pages->current_page of $pages->num_pages</p>\n";
echo "<p>SELECT * FROM table $pages->limit (retrieve records $pages->low-$pages->high from table - $pages->items_total item total / $pages->items_per_page items per page)";
}
add_filter('the_content','get_scrapy_scraped');
函数get_scrapy_scraped($content)
{
包括_once('paginator.class.php');
全球$wpdb;
如果(!is_page('jobs')//读取作业时
返回$content;
$query=“从wp_职业中选择计数(*)”;
$result=mysql\u query($query)或die(mysql\u error());
$num\u rows=mysql\u fetch\u row($result);
$pages=新分页器;
$pages->items_total=$num_行[0];
$pages->mid_range=9;//要显示的页数。必须为奇数且大于3
$pages->paginate();
echo$pages->display_pages();
回显“$pages->display_jump_menu()。$pages->display_items_per_page()”;
$query=“按工作名称ASC$pages->limit从wp\U职业订单中选择*”;
$result=mysql\u query($query)或die(mysql\u error());
回声“;
回显“职务名称部门/职位信息申请链接”;
while($row=mysql\u fetch\u row($result))
{
回显“$行[3]$行[1]$行[0]$行[2]\n”;
}
回声“;
echo$pages->display_pages();
echo“Page:$pages->current\u Page of$pages->num\u pages

\n”; echo“SELECT*FROM table$pages->limit(检索记录$pages->low-$pages->high FROM table-$pages->items\u total item total/$pages->items\u per page每页项目)”; }
而paginator.class.php是:

        <?php


    class Paginator{
        var $items_per_page;
        var $items_total;
        var $current_page;
        var $num_pages;
        var $mid_range;
        var $low;
        var $limit;
        var $return;
        var $default_ipp;
        var $querystring;
        var $ipp_array;

    function Paginator()
    {
        $this->current_page = 1;
        $this->mid_range = 7;
        $this->ipp_array = array(10,25,50,100,'All');
        $this->items_per_page = (!empty($_GET['ipp'])) ? $_GET['ipp']:$this->default_ipp;
    }

    function paginate()
    {
        if(!isset($this->default_ipp)) $this->default_ipp=25;
        if($_GET['ipp'] == 'All')
        {
            $this->num_pages = 1;
//          $this->items_per_page = $this->default_ipp;
        }
        else
        {
            if(!is_numeric($this->items_per_page) OR $this->items_per_page <= 0) $this->items_per_page = $this->default_ipp;
            $this->num_pages = ceil($this->items_total/$this->items_per_page);
        }
        $this->current_page = (isset($_GET['page'])) ? (int) $_GET['page'] : 1 ; // must be numeric > 0
        $prev_page = $this->current_page-1;
        $next_page = $this->current_page+1;
        if($_GET)
        {
            $args = explode("&",$_SERVER['QUERY_STRING']);
            foreach($args as $arg)
            {
                $keyval = explode("=",$arg);
                if($keyval[0] != "pg" And $keyval[0] != "ipp") $this->querystring .= "&" . $arg;
            }
        }

        if($_POST)
        {
            foreach($_POST as $key=>$val)
            {
                if($key != "page" And $key != "ipp") $this->querystring .= "&$key=$val";
            }
        }
        if($this->num_pages > 10)
        {
            $this->return = ($this->current_page > 1 And $this->items_total >= 10) ? "<a class=\"paginate\" href=\"?page=wp-retrieve-database&page=$i&ipp=$this->items_per_page$this->querystring\">&laquo; Previous</a> ":"<span class=\"inactive\" href=\"#\">&laquo; Previous</span> ";

            $this->start_range = $this->current_page - floor($this->mid_range/2);
            $this->end_range = $this->current_page + floor($this->mid_range/2);

            if($this->start_range <= 0)
            {
                $this->end_range += abs($this->start_range)+1;
                $this->start_range = 1;
            }
            if($this->end_range > $this->num_pages)
            {
                $this->start_range -= $this->end_range-$this->num_pages;
                $this->end_range = $this->num_pages;
            }
            $this->range = range($this->start_range,$this->end_range);

            for($i=1;$i<=$this->num_pages;$i++)
            {
                if($this->range[0] > 2 And $i == $this->range[0]) $this->return .= " ... ";
                // loop through all pages. if first, last, or in range, display
                if($i==1 Or $i==$this->num_pages Or in_array($i,$this->range))
                {
                    $this->return .= ($i == $this->current_page And $_GET['page'] != 'All') ? "<a title=\"Go to page $i of $this->num_pages\" class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" title=\"Go to page $i of $this->num_pages\" href=\"?page=$i&ipp=$this->items_per_page$this->querystring\">$i</a> ";
                }
                if($this->range[$this->mid_range-1] < $this->num_pages-1 And $i == $this->range[$this->mid_range-1]) $this->return .= " ... ";
            }
            $this->return .= (($this->current_page < $this->num_pages And $this->items_total >= 10) And ($_GET['page'] != 'All') And $this->current_page > 0) ? "<a class=\"paginate\" href=\"?page=$next_page&ipp=$this->items_per_page$this->querystring\">Next &raquo;</a>\n":"<span class=\"inactive\" href=\"#\">&raquo; Next</span>\n";
            $this->return .= ($_GET['page'] == 'All') ? "<a class=\"current\" style=\"margin-left:10px\" href=\"#\">All</a> \n":"<a class=\"paginate\" style=\"margin-left:10px\" href=\"?page=1&ipp=All$this->querystring\">All</a> \n";
        }
        else
        {
            for($i=1;$i<=$this->num_pages;$i++)
            {
                $this->return .= ($i == $this->current_page) ? "<a class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" href=\"?page=$i&ipp=$this->items_per_page$this->querystring\">$i</a> ";
            }
            $this->return .= "<a class=\"paginate\" href=\"?page=1&ipp=All$this->querystring\">All</a> \n";
        }
        $this->low = ($this->current_page <= 0) ? 0:($this->current_page-1) * $this->items_per_page;
        if($this->current_page <= 0) $this->items_per_page = 0;
        $this->limit = ($_GET['ipp'] == 'All') ? "":" LIMIT $this->low,$this->items_per_page";
    }
    function display_items_per_page()
    {
        $items = '';
        if(!isset($_GET[ipp])) $this->items_per_page = $this->default_ipp;
        foreach($this->ipp_array as $ipp_opt) $items .= ($ipp_opt == $this->items_per_page) ? "<option selected value=\"$ipp_opt\">$ipp_opt</option>\n":"<option value=\"$ipp_opt\">$ipp_opt</option>\n";
        return "<span class=\"paginate\">Items per page:</span><select class=\"paginate\" onchange=\"window.location='?page=1&ipp='+this[this.selectedIndex].value+'$this->querystring';return false\">$items</select>\n";
    }
    function display_jump_menu()
    {
        for($i=1;$i<=$this->num_pages;$i++)
        {
            $option .= ($i==$this->current_page) ? "<option value=\"$i\" selected>$i</option>\n":"<option value=\"$i\">$i</option>\n";
        }
        return "<span class=\"paginate\">Page:</span><select class=\"paginate\" onchange=\"window.location='?page='+this[this.selectedIndex].value+'&ipp=$this->items_per_page$this->querystring';return false\">$option</select>\n";
    }
    function display_pages()
    {
        return $this->return;
    }
}

您需要根据当前页面和要显示的行数向查询添加限制和偏移量。例如,如果您在第1页,且每页有10条记录,则需要在查询末尾添加限制10;如果您在第2页,则需要添加偏移量10限制10,因为您希望跳过第10页上显示的前10行并显示以下10行。您可以查看大量分页教程,例如,我通过删除作业修复了错误,并将其设置为href=\“?页面。现在唯一的问题是,我总是坚持使用no_表的结果页面1。