什么是创建新主题并创建包含链接到所述文章的多个对象的文章视图的最有效方法?我是一名 C# 专业人士,但在 PHP 方面,我并不如我希望的那样精通。假设你有:
while(have_posts())
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<a href="<?php the_permalink(); ?>"><?php the_thumbnail(); ?></a>
<a href="<?php the_permalink(); ?>">read more</a>
如您所见,我们至少有 3 次调用该函数the_permalink();
调用该函数 3 次更快,还是调用一次,将其保存在一个变量中,然后根据需要将变量扔到循环中会更快吗?