这个the_title_attribute
函数已经回显,所以您无法回显它的值,请尝试此操作。
elseif( get_post_type($post->ID) == \'press\' ){ ?><h2><?php the_title_attribute(); ?></h2><?php }
或者,或者。。
elseif( get_post_type($post->ID) == \'press\' ){ echo \'<h2>\'; the_title_attribute(); echo\'</h2>\'; }
或者:
elseif( get_post_type($post->ID) == \'press\' ){ echo \'<h2>\' . the_title_attribute( \'\', \'\', false ) . \'</h2>\'; }