因此,我试图创建一个短代码,以获取特定id及其特征图像,并将其显示在特定页面中。我想使用shortcode让用户更容易在这个页面中添加任何帖子。
我尝试了一个简单的代码,它可以工作,但只显示标题,我不知道如何才能获得特色图像而不是标题。
function post_shortcode( $atts ) {
extract(
shortcode_atts(
array(
\'id\' => \'\',
),
$atts
)
);
if ( isset( $id ) ) {
return \'<a href="\' . get_permalink( $id ) . \'">\' . get_the_title( $id ) . \'</a>\';
}
}
add_shortcode( \'test\', \'post_shortcode\' );