我目前正在开发一个WordPress网站,希望使用Schema,我已经取得了一些成功,但现在遇到了困难。我想使用:itemprop="description"
到<p>
\\u行使</p>
.
因为我能够轻松地the_post_thumbnail
使用:
<?php the_post_thumbnail(\'post-thumbnail\',array(\'itemprop\'=>\'image\')); ?>
我认为这将是一项简单的任务,但对于expert标记来说,它稍微复杂一些。
我尝试了以下方法,但没有成功:
<?php the_excerpt(\'excerpt\',array(\'itemprop\'=>\'description\')); ?>
<?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\');
最合适的回答,由SO网友:Simon Hayter 整理而成
这不是最好的解决方案,但效果很好:
<?php remove_filter(\'the_excerpt\', \'wpautop\'); ?>