![見出し画像](https://assets.st-note.com/production/uploads/images/126123375/rectangle_large_type_2_9e81f883a218a00cb2c24a421a7e83e1.png?width=1200)
【WordPress】記事のタイトルをContact Form7 の項目に自動入力
![](https://assets.st-note.com/img/1703918113032-hM75YKxS1E.png)
①Contact Form7で以下を設定
[text post_title]
②functions.phpに以下を追記
function set_post_title_to_cf7_tag( $tag ){
if ( ! is_array( $tag ) ){
return $tag;
}
$name = $tag['name'];
if( $name == 'post_title' ){
$res_get_the_title = get_the_title();
$tag['values'] = (array)$res_get_the_title;
}
return $tag;
}
add_filter( 'wpcf7_form_tag', 'set_post_title_to_cf7_tag', 11 );