> php教程 > php手册 > 본문

Preprocess Comment Content in?WordPress

WBOY
풀어 주다: 2016-06-06 20:13:07
원래의
1053명이 탐색했습니다.

Ive put a great amount of effort into making sure the?comment system on this blog is fast?and feature-filled. ?The comment system is AJAX-based so you dont need to worry about page refreshes. ?You can also post links to GitHub gists, CodeP

I’ve put a great amount of effort into making sure the?comment system on this blog is fast?and feature-filled. ?The comment system is AJAX-based so you don’t need to worry about page refreshes. ?You can also post links to GitHub gists, CodePen pens, and JSFiddle fiddles and see them rendered within the comment. ?Those tasks I accomplish?after a comment has been registered in the?system. ?But what if you want to?modify comment content before it is processed, and subsequently marked as SPAM or scrubbed? ?That’s super easy with WordPress hooks!

The PHP

The <code>preprocess_comment hook allows us to get at the comment data before it is processed. ?Here is how I use this hook, wrapping?<code>`text` strings in <code><code> elements and encoding angle characters in <code><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"></pre><div class="contentsignin">로그인 후 복사</div></div>?elements:

// Manage comment submissions
function preprocess_new_comment($commentdata) {
	// Replace `code` with code
	$commentdata['comment_content'] = preg_replace("/`(.*)`/Um", "$1", $commentdata['comment_content']);
	// Ensure that code inside pre's is allowed
	preg_match_all("/(.*)/", $commentdata['comment_content'], $pre_matches); // $2
	foreach($pre_matches as $match) {
		$immediate_match = str_replace(array(''), array(''), $match[2]);
		$commentdata['comment_content'] = str_replace($match[2], $immediate_match, $commentdata['comment_content']);
	}
	// Return
	return $commentdata;
}
add_action('preprocess_comment', 'preprocess_new_comment');
로그인 후 복사

This snippet?should be added to functions.php, as you would expect of a WordPress theme enhancement.

I love the WordPress hook system — it makes the CMS incredibly powerful and?customizable. ?I also use this hook to prevent WordPress comment SPAM. ?And since many users place HTML code in my comments, it’s important?I encode those angle characters properly. ?In the end, you never know what your user will submit and what each site will accept — use this?WordPress hook to take control!

Read the full article at: Preprocess Comment Content in WordPress

Treehouse
Wufoo

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!