save_post_post-type WordPress Hook,仅在我创建新帖子时有效,但在编辑帖子时不起作用

发布于 2025-01-12 09:23:37 字数 397 浏览 0 评论 0原文

我有一个自定义帖子类型“Compania”,它有一个名为“compania_id”的元字段,我希望该字段=当前post_id

我实现了此操作来执行此操作,并且当我创建新帖子时它可以工作(compania_id 自动等于当前帖子) post_id)但是在旧的 compania 帖子中,当此代码尚未创建时,当我编辑这些帖子并保存时,compania_id 不会像我创建新帖子时那样填充 post_id,为什么?

function anadir_post_id($post_id){
    update_post_meta($post_id, 'compania_id', $post_id);
}
add_action( 'save_post_compania', 'anadir_post_id', 10, 1);

I have a Custom Post Type "Compania", it has a meta field called "compania_id" i would like that field = current post_id

I implemented this action to do that and it works when i create a new post (compania_id automatically is equal to current post_id) but in older compania post when this code hasnt been created, when i edit these post and save, compania_id isnt filled with the post_id as when i create a new post, why??

function anadir_post_id($post_id){
    update_post_meta($post_id, 'compania_id', $post_id);
}
add_action( 'save_post_compania', 'anadir_post_id', 10, 1);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人海汹涌 2025-01-19 09:23:37

您使用的挂钩具有三个参数。因此,您的代码需要如下所示。

function anadir_post_id( int $post_ID, WP_Post $post, bool $update ){
    update_post_meta( $post_id, 'compania_id', $post_id );
}
add_action( 'save_post_compania', 'anadir_post_id', 10, 3 ); //<--- 3 params!

如果您使用旧版本的 php,它将如下所示:

function anadir_post_id( $post_ID, WP_$post, $update ){
    update_post_meta( $post_id, 'compania_id', $post_id );
}
add_action( 'save_post_compania', 'anadir_post_id', 10, 3 ); //<--- 3 params!

当然,如果您有权访问帖子的 wp_postmeta 行,您就已经知道它的 ID。您在这里存储的内容可能是多余的。

The hook you use has three parameters. Therefore your code needs to look like this.

function anadir_post_id( int $post_ID, WP_Post $post, bool $update ){
    update_post_meta( $post_id, 'compania_id', $post_id );
}
add_action( 'save_post_compania', 'anadir_post_id', 10, 3 ); //<--- 3 params!

If you have an older version of php it will look like this:

function anadir_post_id( $post_ID, WP_$post, $update ){
    update_post_meta( $post_id, 'compania_id', $post_id );
}
add_action( 'save_post_compania', 'anadir_post_id', 10, 3 ); //<--- 3 params!

And, of course, if you have access to a post's wp_postmeta rows, you already know its ID. What you store here may be redundant.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文