这导致Wordpress将我的帖子标题设置为“自动草稿”。
我想将标题的值更改为其他值,该值是根据帖子中的其他字段计算得出的。
我该如何使用save_post或其他方法进行此操作?
#1 楼
最简单的方法是使用wp_insert_post_data
而不是save_post
在插入时编辑数据,而不是事后更新数据。这适用于创建新帖子或更新现有帖子而无需更改。通过在update_post
内触发save_post
,还避免了产生无限循环的危险。add_filter( 'wp_insert_post_data' , 'modify_post_title' , '99', 1 ); // Grabs the inserted post data so you can modify it.
function modify_post_title( $data )
{
if($data['post_type'] == 'rating' && isset($_POST['rating_date'])) { // If the actual field name of the rating date is different, you'll have to update this.
$date = date('l, d.m.Y', strtotime($_POST['rating_date']));
$title = 'TV ratings for ' . $date;
$data['post_title'] = $title ; //Updates the post title to your new title.
}
return $data; // Returns the modified data.
}
#2 楼
我的需求完全相同,因此我编写了此功能-可以正常工作。根据您的需要进行修改。希望对您有所帮助。// set daily rating title
function set_rating_title ($post_id) {
if ( $post_id == null || empty($_POST) )
return;
if ( !isset( $_POST['post_type'] ) || $_POST['post_type']!='rating' )
return;
if ( wp_is_post_revision( $post_id ) )
$post_id = wp_is_post_revision( $post_id );
global $post;
if ( empty( $post ) )
$post = get_post($post_id);
if ($_POST['rating_date']!='') {
global $wpdb;
$date = date('l, d.m.Y', strtotime($_POST['rating_date']));
$title = 'TV ratings for ' . $date;
$where = array( 'ID' => $post_id );
$wpdb->update( $wpdb->posts, array( 'post_title' => $title ), $where );
}
}
add_action('save_post', 'set_rating_title', 12 );
#3 楼
这是使用静态变量防止无限循环的解决方案。这样,您就可以在挂钩到wp_update_post()
的函数中安全地调用save_post
。function km_set_title_on_save( $post_id ) {
// Set this variable to false initially.
static $updated = false;
// If title has already been set once, bail.
if ( $updated ) {
return;
}
// Since we're updating this post's title, set this
// variable to true to ensure it doesn't happen again.
$updated = true;
$date = get_post_meta( $post_id, 'rating_date', true );
$date_formatted = date( 'l, d.m.Y', strtotime( $date ) );
// Update the post's title.
wp_update_post( [
'ID' => $post_id,
'post_title' => 'TV ratings for ' . $date_formatted,
] );
}
add_action( 'save_post', 'km_set_title_on_save' );
注意:要将此功能限制为特定的帖子类型,请使用save_post_ { $ post-> post_type}
挂钩而不是save_post。
#4 楼
尝试使用过滤器default_title:add_filter( 'default_title', 'my_default_title', 10, 2 );
function my_default_title( $post_title, $post ){
$custom_post_type = 'my_awesome_cpt';
// do it only on your custom post type(s)
if( $post->post_type !== $custom_post_type )
return $post_title;
// create your preferred title here
$post_title = $custom_post_type . date( 'Y-m-d :: H:i:s', time() );
return $post_title;
}
评论
此解决方案不允许根据要求创建标题“从我的帖子中的其他字段计算”。很好,如果您可以为所有此类帖子生成自动标题。但是,如果您需要依赖某些动态变量,那么这将无济于事。
–贝拉尼特·戈伦(Biranit Goren)
2012年11月21日在21:45
@Biranit Goren“从我帖子中的其他字段计算”是什么意思?您在$ post中存储的post对象中错过了哪个字段?请阅读下面的初始问题和评论。不需要自动生成的后标题。只需要一个伪造的帖子标题(代替WordPress“自动草稿”)。
– Ralf912
2012年11月22日20:10
评论
请编辑您的问题以包括您的register_post_type()调用。您到底想达到什么目标?您根本不需要CPT的帖子标题,还是想从自定义字段值中设置帖子标题?
我根本不想要它,但是在帖子列表中,我无法将其删除,因为我将无法再编辑帖子。这意味着我需要一种方法来放置某种“假”标题。
因此,您真正想要做的是修改“管理帖子”屏幕,为您的自定义帖子类型输出不同的列?如果是这样,那可能是一个更有益的问题。 :)
这只是一部分。一个人问这样的“影响”问题是因为他寻求答案来帮助他组织项目的许多方面。搜索,以e.t.c为模板