WordPress情侣博客开发日记和悄悄话功能时,必须考虑即使管理员也不允许修改对方的内容,请将如下代码添加至function.php文件中:
function waiwai_custom_test() { if (stripos($_SERVER['REQUEST_URI'], '/wp-admin/post.php') !== false) { global $current_user, $post; if ($post->post_type == 'riji' || $post->post_type == 'qiaoqiaohua') { if( !$current_user->ID || $post->post_author != $current_user->ID) { ?> </head> <body> <div class="error"><p>无权编辑 <input type="button" name="button1" id="button1" value="返回" onclick="history.go(-1)" /> </p></div> </body> </html> <?php exit(0); } } } } add_action( 'admin_head', 'waiwai_custom_test' );
注:自定义日记(riji)和悄悄话(qiaoqiaohua)文档类型,请另行参考本站内容。
标签:WordPress情侣博客设计
Leave a Reply