詳解WordPress中加入投稿功能的方法

青灯夜游
發布: 2023-03-02 19:55:41
轉載
1119 人瀏覽過

詳解WordPress中加入投稿功能的方法

許多網站都想開放讀者的投稿功能,接受讀者的投稿,不僅可以豐富部落格的內容,還可以增加與讀者之間的溝通,可以說是一舉多得的事情,何樂不為呢? WordPress本身並沒有提供投稿功能,但WordPress擁有強大的擴充能力,我們可以自己來加入這個功能。

實作使用者投稿,有兩種方法,一種是開放後台的註冊功能,一般使用者註冊進去預設為投稿者,登陸進去即可新增文章(預設為草稿);另一種方法是在前台提供投稿表單,使用者填寫對應的表格即可。前一種方法實現起來比較簡單,基本上不需要博主配置太多東西,只是有些博主可能會覺得彆扭,不願讓他人看到自己的博客後台;而後一種方法對投稿者來說方便了很多,部落客也不用擔心自己部落格的後台隱私,只是這個方法實現起來比較麻煩,需要配置的東西很多。本文也只將介紹後一種方法,希望對你有幫助,當然也只是複製貼上程式碼就可以了。

一、新增投稿表單

1、先在目前主題的目錄下新建一個php文件,命名為tougao-page.php,然後將page.php中的所有程式碼複製到tougao-page.php中;

2、刪除tougao-page.php開頭的所有註釋,即/* 與*/ ,以及它們之間的所有內容;

3、搜尋:the_content,可以查找到類似程式碼,將其替換成程式碼一

如果你在tougao-page .php中找不到the_content,那你可以找:get_template_part,可找到類似程式碼: ,將content-page.php中的所有程式碼替換這部分程式碼即可。再用下面的程式碼取代

程式碼一:

<?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(&#39;hide_empty=0&id=tougaocategorg&show_count=1&hierarchical=1&#39;); ?>
	</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(&#39;timestamp&#39;)替代time()
 *  
 *  2011年04月12日 :
 *  修改了wp_die函数调用,使用合适的页面title
 *  
 *  2013年01月30日 :
 *  错误提示,增加点此返回链接
 *  
 *  2013年07月24日 :
 *  去除了post type的限制;已登录用户投稿不用填写昵称、email和博客地址
 *  
 *  2015年03月08日 :
 *  使用date_i18n(&#39;U&#39;)代替current_time(&#39;timestamp&#39;)
 */
    
if( isset($_POST[&#39;tougao_form&#39;]) && $_POST[&#39;tougao_form&#39;] == &#39;send&#39;) {
    global $wpdb;
    $current_url = &#39;http://你的投稿页面地址&#39;;   // 注意修改此处的链接地址
    $last_post = $wpdb->get_var("SELECT `post_date` FROM `$wpdb->posts` ORDER BY `post_date` DESC LIMIT 1");
    // 博客当前最新文章发布时间与要投稿的文章至少间隔120秒。
    // 可自行修改时间间隔,修改下面代码中的120即可
    // 相比Cookie来验证两次投稿的时间差,读数据库的方式更加安全
    if ( (date_i18n(&#39;U&#39;) - strtotime($last_post)) < 120 ) {
        wp_die(&#39;您投稿也太勤快了吧,先歇会儿!<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;);
    }
        
    // 表单变量初始化
    $name = isset( $_POST[&#39;tougao_authorname&#39;] ) ? trim(htmlspecialchars($_POST[&#39;tougao_authorname&#39;], ENT_QUOTES)) : &#39;&#39;;
    $email =  isset( $_POST[&#39;tougao_authoremail&#39;] ) ? trim(htmlspecialchars($_POST[&#39;tougao_authoremail&#39;], ENT_QUOTES)) : &#39;&#39;;
    $blog =  isset( $_POST[&#39;tougao_authorblog&#39;] ) ? trim(htmlspecialchars($_POST[&#39;tougao_authorblog&#39;], ENT_QUOTES)) : &#39;&#39;;
    $title =  isset( $_POST[&#39;tougao_title&#39;] ) ? trim(htmlspecialchars($_POST[&#39;tougao_title&#39;], ENT_QUOTES)) : &#39;&#39;;
    $category =  isset( $_POST[&#39;cat&#39;] ) ? (int)$_POST[&#39;cat&#39;] : 0;
    $content =  isset( $_POST[&#39;tougao_content&#39;] ) ? trim(htmlspecialchars($_POST[&#39;tougao_content&#39;], ENT_QUOTES)) : &#39;&#39;;
    
    // 表单项数据验证
    if ( empty($name) || mb_strlen($name) > 20 ) {
        wp_die(&#39;昵称必须填写,且长度不得超过20字。<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;);
    }
    
    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(&#39;Email必须填写,且长度不得超过60字,必须符合Email格式。<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;);
    }
    
    if ( empty($title) || mb_strlen($title) > 100 ) {
        wp_die(&#39;标题必须填写,且长度不得超过100字。<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;);
    }
    
    if ( empty($content) || mb_strlen($content) > 3000 || mb_strlen($content) < 100) {
        wp_die(&#39;内容必须填写,且长度不得超过3000字,不得少于100字。<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;);
    }
    
    $post_content = &#39;昵称: &#39;.$name.&#39;<br />Email: &#39;.$email.&#39;<br />blog: &#39;.$blog.&#39;<br />内容:<br />&#39;.$content;
    
    $tougao = array(
        &#39;post_title&#39; => $title, 
        &#39;post_content&#39; => $post_content,
        &#39;post_category&#39; => 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(&#39;投稿成功!感谢投稿!<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;, &#39;投稿成功&#39;);
    }
    else {
        wp_die(&#39;投稿失败!<a href="&#39;.$current_url.&#39;">点此返回</a>&#39;);
    }
}
登入後複製

最後以UTF-8編碼保存tougao-page.php,否則中文可能會亂碼。然後進入WordPress管理後台 – 頁面 – 建立頁面,標題為投稿(可以自己命名),內容填上投稿說明等,右側可以選擇模板,選擇 tougao 即可。 此頁面即前台註冊頁面,將該頁面的連結放到網站任何位置,供使用者點擊註冊即可。

好了,基本的投稿功能已經添加完畢,至於表單樣式不好看,表單缺少你想要的項目等問題,你就自己添加css、表單項目吧。最後,也歡迎為本站投稿哦,當然本站的投稿方式是開放後台的註冊功能,不是以上的表單形式。

程式碼補充說明

1、如果你想讓投稿的文章立即發布,而不需要審核再編輯,那麼請將以上程式碼中的:

&#39;post_content&#39; => $post_content,
登入後複製

改成:

&#39;post_content&#39; => $post_content,'post_status' => 'publish',
登入後複製

2、如果你想让用户在投稿的同时,将投稿者注册成你本站的投稿者,并将文章的作者归到这个投稿者的名下,你可以参考此条回复的内容修改相应的代码:查看回复

3、如果你的博客文章都有自定义栏目,并且想在用户投稿的同时添加自定义栏目,可以参考这条回复:查看回复

4、如果你觉得本文提供的文章编辑框太过单调,需要一个富文本编辑,你可以看看这篇文章(包含图片上传功能):WordPress投稿功能添加富文本编辑器

5、如果你使用了一些富文本编辑器,文章提交后内容中的代码都被转义了,可以参考这条回复:查看回复

6、如果你需要投稿的文章发布后通知投稿者,可以看看这篇文章(前提投稿的文章默认是草稿状态,而不是直接发布):WordPress投稿功能添加邮件提醒功能

7、如果你想给投稿页面增加验证码功能,可以 点此下载 验证码文件,解压后将captcha目录放到当前主题目录下,然后在代码一中,将35行的:

<br clear="all">
登入後複製

改成:

<br clear="all">
登入後複製

将代码二中的:

if( isset($_POST[&#39;tougao_form&#39;]) && $_POST[&#39;tougao_form&#39;] == &#39;send&#39;) {
登入後複製

改成:

if (!isset($_SESSION)) {
 session_start();
session_regenerate_id(TRUE);
}
 
if( isset($_POST[&#39;tougao_form&#39;]) && $_POST[&#39;tougao_form&#39;] == &#39;send&#39;) {
  if(empty($_POST['captcha_code'])
    || empty($_SESSION['ludou_lcr_secretword'])
    || (trim(strtolower($_POST['captcha_code'])) != $_SESSION['ludou_lcr_secretword'])
  ) {
    wp_die('验证码不正确!点此返回');
  }
登入後複製

大功造成!

推荐学习:《WordPress教程

以上是詳解WordPress中加入投稿功能的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:ludou.org
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板