一般情況下我們都是登錄后臺進行文章及評論管理,如能前臺實現(xiàn)管理文章,特別是前臺刪除垃圾留言,是不是很方便。實現(xiàn)方法很簡單,把下面兩段代碼加到主題模板的適當位置即可。
前臺刪除文章
原代碼來自:http://wp-snippets.com/delete-post-from-front-end/
運行原代碼后,發(fā)現(xiàn)點擊“Delete post”只會轉(zhuǎn)到一個警告頁面,并且不會刪除日志,稍微改動了一下。
修改后的:
<?php
$url = get_bloginfo('url');
if (current_user_can('edit_post', $post->ID)){
echo '<a class="delete-post" href="';
echo wp_nonce_url("$url/wp-admin/post.php?action=delete&post=$id", 'delete-post_'. $post->ID);
echo '">Delete post</a>';
}
?>
前臺刪除評論
原代碼來自:http://www.ninthday.net/2011/08/magement-comments-front.html
原代碼需手動修改博客URL地址,并需要確認后方可刪除評論,修改后的:
<?php
if (is_user_logged_in() ) {
$url = get_bloginfo('url');
echo '<a id="delete-'. $comment->comment_ID .'" href="'. wp_nonce_url("$url/wp-admin/comment.php?action=deletecomment&p=". $comment->comment_post_ID . '&c='. $comment->comment_ID, 'delete-comment_'. $comment->comment_ID). '"">Delete</a>';
}
?>
HotNews主題將上述代碼加到functions.php模版:
<span class="datetime">
這句下面適當位置。
這段代碼我只在HotNews主題中試過,評論模版采用標準評論函數(shù)的主題未嘗試過。
感覺第一段前臺刪除文章的代碼用處不是很大,而前臺刪除評論功能卻很實用,看到一個垃圾刪一個,爽!
更多信息請查看IT技術(shù)專欄