我想添加一个自定义的帖子分隔符来分隔我的帖子。我正在WordPress中使用Enfold主题。组织。我已经找到了问题的答案,但我不懂编码语言。
我知道WordPress使用post循环。我可以在循环中包含代码来生成自定义除法器。我在看代码的时候不明白。
这是我用Short code Ultimate生成的最新代码:
[su_posts posts_per_page="4" tax_term="37,38,48,49,17,18,50,35,51,1" tax_operator="0" order="desc"]
这是我从这个论坛上学到的代码:
while( have_posts() ):
the_post();
the_title();
the_excerpt();
// if current_post is 1, insert the div
// note that current_post starts at 0,
// so this will be after the second post\'s content
if( 1 == $wp_query->current_post ):
echo \'<div>My div!</div>\';
endif;
endwhile;
有人能告诉我如何在WordPress循环中格式化代码以包含我的自定义帖子分隔符吗?