EEfaq论坛-赚客自留地

 找回密码
 免费注册
查看: 1686|回复: 10

求助如何去除wordpress评论框下面的内容?

  [复制链接]
发表于 2013-8-6 21:05:41 | 显示全部楼层 |阅读模式
这2天下载了一个不错的主题,但是发现评论框下面有2行碍眼的文字:
您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
不知道如何去除。球高手指教。

发表于 2013-8-6 21:20:37 | 显示全部楼层
在wp后台找到外观——编辑,然后看右面那些php文件
找到comments.php,然后搜索你要去掉的字符,找到的话相应的删除就好

评分

参与人数 3e币 +6 收起 理由
哎呀妈啊 + 2 送花花~~~
月光飞燕 + 2
luguokankan + 2 建议先备份下

查看全部评分

回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-8-6 21:28:56 | 显示全部楼层

嗯,在comments.php找了半天也没找到相应的,帮忙再给看一下要删除哪一组代码呢?
<?php// Do not delete these lines
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die (__('Please do not load this page directly. Thanks!', TEMPLATE_DOMAIN));
if ( post_password_required() ) { ?>
<p><?php _e('This post is password protected. Enter the password to view comments.', TEMPLATE_DOMAIN); ?></p>
<?php
return;
}
$cpage = get_query_var('cpage');
?>

<!-- You can start editing here. -->
<div class="commentpost" id="commentpost">

<?php if ( have_comments() ) : ?>
<?php if ( ! empty($comments_by_type['comment']) ) : ?>

<h4 id="comments"><span><?php comments_number(__('No Comments Yet', TEMPLATE_DOMAIN), __('1 Comment Already', TEMPLATE_DOMAIN), __('% Comments Already', TEMPLATE_DOMAIN)); ?></span></h4>

<div id="post-navigator-single">
<div id="rssfeed" class="alignleft"><a title="<?php __('stay updated with', TEMPLATE_DOMAIN); ?> <?php the_title(); ?>" href="<?php echo home_url() ?>/?feed=rss2&amp;p=<?php the_ID(); ?>"><?php _e('Subscribe to comments feed', TEMPLATE_DOMAIN); ?></a></div>
</div>

<?php do_action( 'bp_before_blog_comment_list' ) ?>
<ol class="commentlist">
<?php wp_list_comments('type=comment&callback=get_the_list_comments'); ?>
</ol>
<?php do_action( 'bp_after_blog_comment_list' ) ?>

<div id="post-navigator-single">
<div class="alignright"><?php if(function_exists('paginate_comments_links')) {  paginate_comments_links(); } ?></div>
</div>

<?php endif; ?>

<?php if($cpage == '1') : ?>
<?php if ( ! empty($comments_by_type['pings']) ) : ?>
<h4><span><?php echo get_wp_comment_count('pings'); ?></span></h4>
<ol class="pinglist">
<?php wp_list_comments('type=pings&callback=get_the_list_pings'); ?>
</ol>
<?php endif; ?>
<?php endif; ?>


<?php else : // this is displayed if there are no comments so far ?>

<?php if ('open' != $post->comment_status) : ?>
<!-- If comments are open, but there are no comments. -->
<?php else : // comments are closed ?>
<?php endif; ?>

<?php endif; //check have_comments() ?>

<?php if ('open' == $post->comment_status) : ?>
<?php comment_form(); ?>
<?php endif; // if you delete this the sky will fall on your head ?>

</div>



回复 支持 反对

使用道具 举报

发表于 2013-8-6 22:06:18 | 显示全部楼层
winly 发表于 2013-8-6 21:28
嗯,在comments.php找了半天也没找到相应的,帮忙再给看一下要删除哪一组代码呢?

最好上一张图,具体你想要删除哪里,说不定是post.php代码呢

回复 支持 反对

使用道具 举报

发表于 2013-8-7 07:31:10 | 显示全部楼层
将<?php comment_form();?>
改成
<?php comment_form(array('comment_notes_after' => '')); ?>

评分

参与人数 1e币 +1 收起 理由
winly + 1 妙语

查看全部评分

回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-8-7 12:17:07 | 显示全部楼层
灰常感谢版主,问题已解决!
回复 支持 反对

使用道具 举报

发表于 2013-8-9 01:17:10 | 显示全部楼层
winly 发表于 2013-8-7 12:17
灰常感谢版主,问题已解决!

快自己说一遍,当复习,哈哈哈
正打算上来问这个问题来着,谢谢楼主分享了
小白菜,一起加油!

回复 支持 反对

使用道具 举报

发表于 2013-9-3 11:35:31 | 显示全部楼层
这样,假如模版上有一块你不想要,就右键点审查元素,然后你就能找到这块代码在哪里了,
然后删除或修改就行了
回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-9-3 21:45:10 | 显示全部楼层
把石头咬哭 发表于 2013-9-3 11:35
这样,假如模版上有一块你不想要,就右键点审查元素,然后你就能找到这块代码在哪里了,
然后删除或修改就 ...

删除需要找到对应模板的外观→编辑的代码吧?!怎么能迅速找到对应的删除?

回复 支持 反对

使用道具 举报

发表于 2013-9-4 06:58:10 | 显示全部楼层
把石头咬哭 发表于 2013-9-3 11:35
这样,假如模版上有一块你不想要,就右键点审查元素,然后你就能找到这块代码在哪里了,
然后删除或修改就 ...

像lz这个问题,这个方法就没效.
这个东西不是主题输出的,而是wordpress core


回复 支持 反对

使用道具 举报

发表于 2013-9-21 11:42:56 | 显示全部楼层
wawylysys 发表于 2013-8-6 22:06
最好上一张图,具体你想要删除哪里,说不定是post.php代码呢

就是输入评论的文本框下面的这段:
You may use these HTML tags and attributes:  <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
                                               
                                                                                                                                                                                                               
怎么删了它?

                               

QQ截图20130921114048.png
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

QQ|联系我们|Archiver|手机版|小黑屋|EEfaq论坛

GMT+8, 2024-4-30 19:20

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表