많은 웹사이트에서 독자의 제출 기능을 개방하고 싶어합니다. 독자의 제출을 수락하는 것은 블로그의 콘텐츠를 풍성하게 할 뿐만 아니라 독자와의 소통도 늘릴 수 있는 일이라고 할 수 있습니다. 안 해? WordPress 자체에서는 제출 기능을 제공하지 않지만 WordPress에는 강력한 확장 기능이 있으므로 이 기능을 직접 추가할 수 있습니다.
사용자 제출을 구현하는 방법에는 두 가지가 있습니다. 하나는 백엔드에서 등록 기능을 여는 것입니다. 일반 사용자는 등록 시 기본적으로 기여자로 설정되어 있습니다(기본값은 초안). 다른 방법은 제출 양식에 제공하는 것입니다. 사용자는 해당 양식을 작성할 수 있습니다. 전자의 방법은 구현하기가 비교적 간단하고 기본적으로 블로거가 너무 많은 것을 구성할 필요가 없습니다. 그러나 일부 블로거는 어색함을 느끼고 다른 사람이 자신의 블로그 백엔드를 보는 것을 원하지 않을 수 있지만 많은 블로거에게는 후자의 방법이 더 편리합니다. 블로그의 백엔드 개인 정보 보호에 대해 걱정할 필요가 없지만 이 방법은 구현하기가 더 까다롭고 많은 구성이 필요합니다. 이 글에서는 후자의 방법만 소개하겠습니다. 물론, 코드를 복사해서 붙여넣기만 하면 됩니다.
1. 먼저 현재 테마의 디렉터리에 tougao-page.php라는 새 PHP 파일을 만든 다음 page.php의 모든 코드를 tougao-page에 복사합니다. php ;
2. tougao-page.php 시작 부분의 모든 주석, 즉 /* 및 */와 그 사이의 모든 내용을 삭제합니다.
3. the_content를 검색하면 유사한 코드0c8e79941d1bd4f1dc2f706d485e900a, code one
으로 바꾸세요. tougao-page.php에서 the_content
,那么你可以查找:get_template_part
를 찾을 수 없다면 비슷한 코드를 찾을 수 있습니다: a2dd0f23e23238adf728bb7750ca467b, content-page.php의 모든 코드를 이 코드 부분으로 바꾸세요. dcc7971ea2fb1ccad717c5cd04c83203를 다음 코드로 바꾸세요:
Code 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가 코드 2로 변경되었습니다:
<?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 관리 배경 - 페이지 - Contribution이라는 제목으로 페이지를 만들고(직접 이름을 지정할 수 있음) 제출 지침 등으로 내용을 입력합니다. 오른쪽에서 템플릿을 선택하고 tougao를 선택할 수 있습니다. 이 페이지는 프런트엔드 등록 페이지입니다. 사용자가 클릭하여 등록할 수 있도록 웹사이트 어디든 이 페이지에 대한 링크를 배치하세요.
자, 기본 제출 기능이 추가되었습니다. 양식 스타일이 보기 좋지 않거나 양식에 원하는 항목이 부족한 경우 등 CSS와 양식 항목을 직접 추가하면 됩니다. 마지막으로, 이 사이트에 기여하는 것도 환영합니다 물론 이 사이트의 제출 방법은 위 양식이 아닌 백엔드 등록 기능을 여는 것입니다.
'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 중국어 웹사이트의 기타 관련 기사를 참조하세요!