Drupalで知っていることをすべて試し、検索結果ページを確認して、下部にポケットベルを表示しました。私は図書館で働いており、図書館について言及しているページがいくつかあることを知っていますが、最初のページに表示されるのは10ページだけですが、最初のページの後に表示するオプションはありません。Drupalを検索してコードを確認しましたが、同じように見えますが、ポケットベルの機能を動作させることができません。
助言がありますか?
ポケットベルとしてクエリ結果を作成しようとしている場合は、次のようにしてみてください
$query = db_select('node', 'n')->extend('PagerDefault');
->condition('type', 'blog') // you query condition
->fields('n', array('title')) // the fields that you request from database
->limit(10); // the number of result/row per page
$queryresult = $query->execute() ;
$content = '';
foreach ($queryresult as $row) {
$content .= $row->title."<br/>"; // the row view content
}
$content .= theme('pager'); // this will display the pagination content
echo $content;