WPでフロントエンドから投稿する機能を作っています。
inputで入力したテキストをタイトルなどに変換して投稿するまでは成功したのですが、自分で用意した'daily_phrase'というkeyに登録することができません。
最後の方のコードが機能していないのだと思います。
教えていただけると幸いです。
php
1<main id="site-content" role="main"> 2 3 <form name="Form1" method="post" action="#"> 4 <input type="text" id="input" name="inputPhrase" size="80"> 5 <input id="submitButton" type="submit" name="submit" value="送信"> 6 </form> 7 8</main> 9 10<?php 11$dailyphrase = $_POST['inputPhrase']; 12$postTitle = wp_html_excerpt( $dailyphrase, 20, '...' ); 13$submit = $_POST['submit']; 14 15if(isset($submit)){ 16 17 global $user_ID; 18 19 $new_post = array( 20 'post_title' => $postTitle, 21 'post_status' => 'publish', 22 'post_author' => $user_ID, 23 'post_type' => 'post', 24 ); 25 26 $insertedpost = wp_insert_post($new_post); 27 28 if($insertedpost){ 29 30 global $post; 31 32 add_post_meta( $post->ID, 'daily_phrase', sanitize_text_field( $dailyphrase ) ); 33 } 34 35} ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/19 05:46