发布格式链接验证错误

时间:2012-10-04 作者:AndrettiMilas

链接帖子格式显示在我的存档中。php我使用以下代码:

<a href="<?php echo wp_trim_words( get_the_content(), 100 ); ?>">
<?php the_content(); ?>
</a>

Of course, this creates a validation error due to a <p> being inside an <a>. I\'m seeking a solution to fix this validation error.

这是我能想到的最直观的简单链接帖子格式(当然,我愿意接受建议)。

1 个回复
最合适的回答,由SO网友:Milo 整理而成

您可以临时删除添加段落标记的过滤器:

// remove the filter
remove_filter( \'the_content\', \'wpautop\' );

// output content
the_content();

// add the filter again
add_filter( \'the_content\', \'wpautop\' );

结束

相关推荐

Comment form validation

如何设置注释字段的验证规则?我更改了评论者姓名/电子邮件/主页onmouseover和onblur的值(我使用它而不是标签-因此如果字段为空,它会显示“您的电子邮件”、“您的主页”等)。问题是,在提交时,它会在主页字段中提交此文本(因为它没有验证,而不像电子邮件字段,如果您输入了除[email protected]).如何验证主页字段?