在Wordpress中移动单个帖子导航

时间:2016-09-24 08:46:02

标签: wordpress pagination themes posts

我在我的Wordpress博客中使用Accesspress Mag免费版,我想用<!--nextpage-->移动用于分割帖子的分页,我在主题文件里面到处查找,我找不到哪里生成分页,以便我可以将其移到社交分享栏上方

enter image description here

请你帮忙

日Thnx

1 个答案:

答案 0 :(得分:0)

您可以使用JQuery将栏附加到您想要的HTML元素,如下所示:

如果单击红色框,它会将绿色框附加到红色框。删除redBox.on('click'...周围的redBox.append()方法会立即实现,但是因为我希望您看到这里发生了什么,所以您必须单击红色框以移动绿色框。

var greenBox = $('.green');

var redBox = $('.red');

redBox.on('click', function(){
  redBox.append(greenBox);
});
.red {
  background-color:red;
  width:200px;
  height:200px;
}

.green {
  background-color:green;
  height:100px;
  width:100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="red">
</div>

<div class="green">
</div>

您也可以使用此技术进行分页,但请务必查看jquery documentation$.append$.prepend的内容。