将架构与`the_excerpt`一起使用

时间:2013-03-29 作者:Simon Hayter

我目前正在开发一个WordPress网站,希望使用Schema,我已经取得了一些成功,但现在遇到了困难。我想使用:itemprop="description"<p>\\u行使</p>.

因为我能够轻松地the_post_thumbnail 使用:

<?php the_post_thumbnail(\'post-thumbnail\',array(\'itemprop\'=>\'image\')); ?>

我认为这将是一项简单的任务,但对于expert标记来说,它稍微复杂一些。

我尝试了以下方法,但没有成功:

  1. <?php the_excerpt(\'excerpt\',array(\'itemprop\'=>\'description\')); ?>
  2. <?php the_excerpt(\'the_excerpt\',array(\'itemprop\'=>\'description\')); ?>
当前我的摘录functions.php 看起来像:

function new_excerpt_more($more) {
    global $post;
    return \'...<a class="small button secondary" href="\'. get_permalink($post->ID) . \'" itemprop="url">Continue Reading</a>\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');

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

这不是最好的解决方案,但效果很好:

<?php remove_filter(\'the_excerpt\', \'wpautop\'); ?>

结束

相关推荐

将属性添加到联系人表单7中的HTML标记

我想验证电话号码,并确保用户输入所有10位数字。这可以使用HTML5模式atribute完成:<input pattern=\".{10,}\" title=\"10 characters minimum\"> 如何将此模式属性添加到联系人表单7中的输入标记中?这是手机号码输入快捷码的外观:[text* mobile id:field-mobile]