gpt4 book ai didi

Wordpress - 获取页面/帖子订单号(如果设置)

转载 作者:行者123 更新时间:2023-12-02 22:45:50 25 4
gpt4 key购买 nike

有人知道如何获取插入页面属性中的订单号吗?我只需要该编号,如果未设置,请为所有未设置订单页码的页面提供一个特定编号(1 或我想要的任何数字)。

谢谢!

最佳答案

我不确定你想要什么......

如果您想从帖子/页面检索menu_order,您可以使用类似的内容

<?php
$id=1;
$default = 42;
get_post($id); //you can use any kind of query or use it in the loop
global $post;
if(empty($post->menu_order)) //if not set give the value you want
$post->menu_order = $default; //note that it won't update the value in the database
echo $post->menu_order;
wp_reset_query();
?>

关于Wordpress - 获取页面/帖子订单号(如果设置),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6375299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com