ホームページ > 記事 > CMS チュートリアル > WordPressに投稿機能を追加する方法を詳しく解説
多くのウェブサイトでは、読者からの投稿機能を開放したいと考えており、読者からの投稿を受け入れることは、ブログの内容を充実させるだけでなく、読者とのコミュニケーションを増やすことにもつながると言えます。一石二鳥です。ぜひやってみませんか? WordPress 自体には投稿機能はありませんが、WordPress には強力な拡張機能があり、この機能を自分で追加することができます。
ユーザー投稿を実装するには 2 つの方法があります。1 つはバックエンドの登録機能を開く方法です。一般ユーザーが登録すると、デフォルトで投稿者として設定されます。ログイン後、記事を追加できます (デフォルト)はドラフト); その他の方法 フロントデスクに提出フォームが用意されており、ユーザーは対応するフォームに記入します。前者の方法は実装が比較的簡単で、基本的にブロガーが多くのことを設定する必要はありません。ただし、一部のブロガーは気まずく、自分のブログのバックエンドを他の人に見られたくない人もいるかもしれません。一方、後者の方法は寄稿者にとってより便利です。多くのブロガーは、ブログのバックエンドのプライバシーについて心配する必要はありませんが、この方法は実装がより面倒で、多くの構成が必要です。この記事では後者の方法のみを紹介しますので、参考になれば幸いです もちろんコードをコピペするだけです。
1. まず、現在のテーマのディレクトリに tougao-page.php という名前の新しい php ファイルを作成し、ページを変更します。 .php tougao-page.php のすべてのコードをコピーします;
2. tougao-page.php の先頭にあるすべてのコメント、つまり /* と */ およびその間のすべてを削除します;
3. the_content を検索すると、同様のコード dcc7971ea2fb1ccad717c5cd04c83203 が見つかります。code one
tougao を使用している場合は、これを code one に置き換えます。 -page
the_content が .php に見つからない場合は、
get_template_part
を次のコードに置き換えます。コード 1:
<?php the_content(); ?> <!-- 关于表单样式,请自行调整--> <form class="ludou-tougao" method="post" action="<?php echo $_SERVER["REQUEST_URI"]; $current_user = wp_get_current_user(); ?>"> <div style="text-align: left; padding-top: 10px;"> <label for="tougao_authorname">昵称:*</label> <input type="text" size="40" value="<?php if ( 0 != $current_user->ID ) echo $current_user->user_login; ?>" id="tougao_authorname" name="tougao_authorname" /> </div> <div style="text-align: left; padding-top: 10px;"> <label for="tougao_authoremail">E-Mail:*</label> <input type="text" size="40" value="<?php if ( 0 != $current_user->ID ) echo $current_user->user_email; ?>" id="tougao_authoremail" name="tougao_authoremail" /> </div> <div style="text-align: left; padding-top: 10px;"> <label for="tougao_authorblog">您的博客:</label> <input type="text" size="40" value="<?php if ( 0 != $current_user->ID ) echo $current_user->user_url; ?>" id="tougao_authorblog" name="tougao_authorblog" /> </div> <div style="text-align: left; padding-top: 10px;"> <label for="tougao_title">文章标题:*</label> <input type="text" size="40" value="" id="tougao_title" name="tougao_title" /> </div> <div style="text-align: left; padding-top: 10px;"> <label for="tougaocategorg">分类:*</label> <?php wp_dropdown_categories('hide_empty=0&id=tougaocategorg&show_count=1&hierarchical=1'); ?> </div> <div style="text-align: left; padding-top: 10px;"> <label style="vertical-align:top" for="tougao_content">文章内容:*</label> <textarea rows="15" cols="55" id="tougao_content" name="tougao_content"></textarea> </div> <br clear="all"> <div style="text-align: center; padding-top: 10px;"> <input type="hidden" value="send" name="tougao_form" /> <input type="submit" value="提交" /> <input type="reset" value="重填" /> </div> </form>
## を追加します。 #tougao-page.php の先頭で、最初の
<?php /** * Template Name: tougao * 作者:露兜 * 博客:https://www.ludou.org/ * * 更新记录 * 2010年09月09日 : * 首个版本发布 * * 2011年03月17日 : * 修正时间戳函数,使用wp函数current_time('timestamp')替代time() * * 2011年04月12日 : * 修改了wp_die函数调用,使用合适的页面title * * 2013年01月30日 : * 错误提示,增加点此返回链接 * * 2013年07月24日 : * 去除了post type的限制;已登录用户投稿不用填写昵称、email和博客地址 * * 2015年03月08日 : * 使用date_i18n('U')代替current_time('timestamp') */ if( isset($_POST['tougao_form']) && $_POST['tougao_form'] == 'send') { global $wpdb; $current_url = 'http://你的投稿页面地址'; // 注意修改此处的链接地址 $last_post = $wpdb->get_var("SELECT `post_date` FROM `$wpdb->posts` ORDER BY `post_date` DESC LIMIT 1"); // 博客当前最新文章发布时间与要投稿的文章至少间隔120秒。 // 可自行修改时间间隔,修改下面代码中的120即可 // 相比Cookie来验证两次投稿的时间差,读数据库的方式更加安全 if ( (date_i18n('U') - strtotime($last_post)) < 120 ) { wp_die('您投稿也太勤快了吧,先歇会儿!<a href="'.$current_url.'">点此返回</a>'); } // 表单变量初始化 $name = isset( $_POST['tougao_authorname'] ) ? trim(htmlspecialchars($_POST['tougao_authorname'], ENT_QUOTES)) : ''; $email = isset( $_POST['tougao_authoremail'] ) ? trim(htmlspecialchars($_POST['tougao_authoremail'], ENT_QUOTES)) : ''; $blog = isset( $_POST['tougao_authorblog'] ) ? trim(htmlspecialchars($_POST['tougao_authorblog'], ENT_QUOTES)) : ''; $title = isset( $_POST['tougao_title'] ) ? trim(htmlspecialchars($_POST['tougao_title'], ENT_QUOTES)) : ''; $category = isset( $_POST['cat'] ) ? (int)$_POST['cat'] : 0; $content = isset( $_POST['tougao_content'] ) ? trim(htmlspecialchars($_POST['tougao_content'], ENT_QUOTES)) : ''; // 表单项数据验证 if ( empty($name) || mb_strlen($name) > 20 ) { wp_die('昵称必须填写,且长度不得超过20字。<a href="'.$current_url.'">点此返回</a>'); } if ( empty($email) || strlen($email) > 60 || !preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $email)) { wp_die('Email必须填写,且长度不得超过60字,必须符合Email格式。<a href="'.$current_url.'">点此返回</a>'); } if ( empty($title) || mb_strlen($title) > 100 ) { wp_die('标题必须填写,且长度不得超过100字。<a href="'.$current_url.'">点此返回</a>'); } if ( empty($content) || mb_strlen($content) > 3000 || mb_strlen($content) < 100) { wp_die('内容必须填写,且长度不得超过3000字,不得少于100字。<a href="'.$current_url.'">点此返回</a>'); } $post_content = '昵称: '.$name.'<br />Email: '.$email.'<br />blog: '.$blog.'<br />内容:<br />'.$content; $tougao = array( 'post_title' => $title, 'post_content' => $post_content, 'post_category' => array($category) ); // 将文章插入数据库 $status = wp_insert_post( $tougao ); if ($status != 0) { // 投稿成功给博主发送邮件 // somebody#example.com替换博主邮箱 // My subject替换为邮件标题,content替换为邮件内容 wp_mail("somebody#example.com","My subject","content"); wp_die('投稿成功!感谢投稿!<a href="'.$current_url.'">点此返回</a>', '投稿成功'); } else { wp_die('投稿失败!<a href="'.$current_url.'">点此返回</a>'); } }
最後に、tougao-page.php を UTF-8 エンコードで保存します。そうしないと、中国語が文字化けする可能性があります。次に、WordPress 管理の背景 - ページ - 投稿というタイトルのページを作成し (自分で名前を付けることができます)、投稿手順などを内容に記入します。右側でテンプレートを選択し、tougao を選択できます。 このページはフロントエンド登録ページです。ユーザーがクリックして登録できるように、Web サイト上の任意の場所にこのページへのリンクを配置します。
これで、基本的な送信機能が追加されました。フォームのスタイルが悪い、フォームに必要な項目が無いなどの場合は、CSSとフォーム項目を追加するだけで済みます。あなた自身。最後に、 このサイトへの投稿も歓迎です もちろん、このサイトの投稿方法は、上記のフォームではなく、バックエンド登録機能を開くことです。
1. 送信された記事をレビューや編集せずにすぐに公開したい場合は、上記のコードの次の部分を変更してください:
'post_content' => $post_content,
を
'post_content' => $post_content,'post_status' => 'publish',
2、如果你想让用户在投稿的同时,将投稿者注册成你本站的投稿者,并将文章的作者归到这个投稿者的名下,你可以参考此条回复的内容修改相应的代码:查看回复。
3、如果你的博客文章都有自定义栏目,并且想在用户投稿的同时添加自定义栏目,可以参考这条回复:查看回复。
4、如果你觉得本文提供的文章编辑框太过单调,需要一个富文本编辑,你可以看看这篇文章(包含图片上传功能):WordPress投稿功能添加富文本编辑器
5、如果你使用了一些富文本编辑器,文章提交后内容中的代码都被转义了,可以参考这条回复:查看回复。
6、如果你需要投稿的文章发布后通知投稿者,可以看看这篇文章(前提投稿的文章默认是草稿状态,而不是直接发布):WordPress投稿功能添加邮件提醒功能
7、如果你想给投稿页面增加验证码功能,可以 点此下载 验证码文件,解压后将captcha目录放到当前主题目录下,然后在代码一中,将35行的:
<br clear="all">
改成:
<br clear="all">
将代码二中的:
if( isset($_POST['tougao_form']) && $_POST['tougao_form'] == 'send') {
改成:
if (!isset($_SESSION)) { session_start(); session_regenerate_id(TRUE); } if( isset($_POST['tougao_form']) && $_POST['tougao_form'] == 'send') { if(empty($_POST['captcha_code']) || empty($_SESSION['ludou_lcr_secretword']) || (trim(strtolower($_POST['captcha_code'])) != $_SESSION['ludou_lcr_secretword']) ) { wp_die('验证码不正确!点此返回'); }
大功造成!
推荐学习:《WordPress教程》
以上がWordPressに投稿機能を追加する方法を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。