大挖在开发用户中心功能的时候需要给到用户文章列表一个发布文章的功能,通过度度找到了在wordpress主题前台添加删除文章功能,这个功能很好用,添加在文章的循环里面就可以实现wordpress文章前台删除功能。
将下面代码添加到适合的wordpress主题文件位置即可.
1 2 3 4 5 6 7 8 |
<?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 '"><strong>删除文章</strong></a>'; } ?> |