嘿,只要看看代码,它还支持第四个参数post
global $post;
the_title_attribute(array(\'post\'=>$post));//post object
或
global $post;
the_title_attribute(array(\'post\'=>$post->ID));//post id
所以你可以这样使用它
<a href="<?php echo get_permalink($id); ?>" title="<?php the_title_attribute(array(\'post\'=>$id)); ?>"> //where $id is post id
Important Link
the_title_attribute