Post date on Custom field

时间:2016-08-22 作者:Jun Taira

我想使用2个自定义字段。一个是年字段,另一个是月字段。

当我发布我的博客时,这些将自动填入发布日期。我该怎么做?

1 个回复
SO网友:bagpipper

有一个叫做save\\u posts的钩子

所以你需要把一个函数挂接到这个帖子上

add_action(\'save_posts\',\'store_date\');
function store_date(){
  if(get_post_type()==\'post\'){
   $month=get_the_date(\'M\');
   $year=get_the_date(\'Y\');
   update_post_meta(get_the_ID(),\'month-field\',$month);
   update_post_meta(get_The_ID(),\'year-field\',$year);
 }
}
这应该是你所需要的

以下是附加链接save_postsupdate_post_meta

相关推荐

如何在Functions.php中链接style.css

我是WordPress的新手;我刚开始学习WordPress。我想把风格联系起来。函数中的css。php,但我无法解决这里可能存在的问题。谁能给我指出正确的方向吗?指数php<?php get_header(); ?> <?php if ( have_posts() ) { while ( have_posts() ) { the_post();