我使用WordPress。

然后,我添加此代码以在单个帖子上发布多页帖子。

<!--nextpage-->


但是页面链接显示在相关的邮箱之后。告诉我内容后如何更改页面链接框中的位置。对于相关文章,我使用了Jetpack插件。

最佳答案

地狱,

将此添加到主题的自定义CSS中:

.single .entry-content {
  display: flex;
  flex-flow: row wrap;
}

.hentry #jp-relatedposts {
  order: 3;
}

.entry-content .page-links {
  order: 1;
}

#content div.sharedaddy,
#main div.sharedaddy,
div.sharedaddy {
  order: 2;
}

关于css - 在单个帖子上移动页面链接位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58072961/

10-11 22:16
查看更多