WordPress:Answers-Modifying

来自站长百科
跳转至: 导航、​ 搜索

These FAQs have been deprecated. You will find the new updated Frequently Asked Questions on the new pages for the WordPress:FAQ.

这些常见问题解答已经取消了。你在常见问题解答的新的页面上会看到新的以更新的常见问题解答

Back to FAQ

返回到常见问题解答

Password Protected text[ ]

受密码保护的文本[ ]

To create password protected text, see Line 19 of wp-includes/template-functions-post.php for that information.

要使得文本受密码保护,请看看wp-includes/template-functions-post.php的第19行的相关信息。

Comments Off[ ]

关闭评论[ ]

To turn your comments feature off: 关闭你的评论功能。

Line 58 of wp-includes/template-functions-comment.php has the words 'Comments Off' (1.2mingus)

:wp-includes/template-functions-comment.php的第58行有'关闭评论'的字样(1.2mingus)

Line 98 of wp-includes/template-functions-comment.php has the words 'Comments Off' (1.3)

:wp-includes/template-functions-comment.php的第98行有'关闭评论'的字样(1.3)

Do not mail my comments[ ]

不要邮寄我的评论[ ]

This will stop WordPress:WordPress from sending you a mail if the email address you used when you posted the comment was the same as the email address for the author of the post (which is the address the notification email gets sent to). This applies to v1.2 / 1.2.1 code ONLY.

如果你发送评论时使用的电子邮件地址与文章作者使用的电子邮件地址(这是电子邮件通知将要被发送到的地址)相同,这个可以阻止WordPress向你发送电子邮件。这只应用于v1.2 / 1.2.1 代码。

In functions.php change the following line:

在functions.php更改下面的行:

if ('' == $user->user_email) return false; // If there's no email to send the comment to

to

if ('' == $user->user_email || $comment->comment_author_email == $user->user_email) return false; // If there's no email to send the comment to


if ('' == $user->user_email)返回错误的; // 如果不将评论发送到电子邮件中

to

if ('' == $user->user_email || $comment->comment_author_email == $user->user_email)返回错误的; //如果不将评论发送到电子邮件中

Add an image to your RSS[ ]

给你的RSS添加图像[ ]

Information on how to add an image to your RSS feed for WordPress 1.5:

关于怎样向WordPress1.5 RSS feed添加图像的信息:

Information on how to add an image to your RSS feed for WordPress 2.0+:

Back to FAQ


Information on how to add an image to your RSS feed for WordPress 2.0+:

返回到常见问题解答