作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个自定义侧边栏,用于抓取帖子父页面:
query_posts("post_type=page&post_parent=6");
the_title
不起作用,因为它是子页面的标题。
最佳答案
echo get_the_title( $post->post_parent );
echo get_the_title( X );
关于WordPress:获取 post_parent 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5198209/
我正在尝试为自定义帖子类型导入数据: sausages http://localhost:10293/?gmc_recipeingredient=sa
我创建了一个自定义侧边栏,用于抓取帖子父页面: query_posts("post_type=page&post_parent=6"); 我想获取 post_parent 的标题(即“关于”)。 th
我正在使用 WordPress 使用主题创建一个网站,该主题在每个页面的顶部都有这个 PHP,但我对它的作用感到困惑。 post_parent != 0 ) { $thePostID = $p
我创建/修改了一个在 WordPress 页面上显示面包屑的功能。修改后的版本利用#post->post_parent 获取页面的父级,以便获得完整的面包屑路径(主页 > 第 1 页 > 第 2 页
我是一名优秀的程序员,十分优秀!