我试图从发布名为fiche_artiste
的自定义帖子类型的表单中完成gmw的地址字段。
我在自制插件中使用此代码:
function gmw_update_fiche_artiste_location( $pid ) {
// Si c'est une édition d'un Artiste existant
if ( false !== wp_is_post_revision( $pid ) )
return;
// Vérifie la sauvegarde //
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
//Vérifie les droit de l'utilisateur
if ( !current_user_can( 'edit_post', $pid ) )
return;
//Obtention de l'information du champs du formulaire "address"
$gmw_address = get_post_meta( $pid, 'address', true );
if ( empty( $address ) )
return;
//Appel le fichier update-location.php
include_once( GMW_PT_PATH .'/includes/gmw-pt-update-location.php' );
//Verifie si la fonction existe
if ( !function_exists( 'gmw_pt_update_location' ) )
return;
//Crée un array à passer à la fonction
$gmw_args = array(
'post_id' => $pid, //Identifie le nouvelle article
'post_type' => 'fiche_artiste',
'address' => $gmw_address // L'adresse récupérée du champs adress
);
//Appelle la fonction
gmw_pt_update_location( $gmw_args );
}
//Execute la fonction à la création/mise à jour de l'article
add_action( 'gmw_pt_after_location_updated', 'gmw_update_fiche_artiste_location' );
但它不起作用。我的自定义字段address
已正确填充但后期本地化不正确。
答案 0 :(得分:0)
删除
'post_type' => 'fiche_artiste',// my custom post type
根据文件。
ID是唯一的,它与帖子类型无关。
答案 1 :(得分:0)
我很抱歉,事实上这段代码效果很好! 我只需要从后端发布新帖子!对不起再次。