我刚进入了post formats 我想知道为什么post格式的“API”中有三分之二的函数提供完全相同的功能。考虑以下两个概念(A和B):
if ( have_posts() )
{
while ( have_posts() )
{
the_post();
// A) has_post_format
if ( has_post_format(\'format\') )
{
the_excerpt(); // some special formating
}
// VERSUS:
// B)
if ( get_post_format( $GLOBALS[\'post\']->ID ) == \'format\' )
{
the_excerpt(); // some special formating
}
} // endwhile;
} // endif;
有人能解释一下为什么只有ex才有这两个函数吗。get_post_format
? 如果你能给我举一些例子,说明一个函数不能完成另一个函数所能完成的事情,我会非常高兴。