このワードプレス用のショートコードを作成しましたが、機能しません
<?php
function theme_tfw_posts()
{
?>
<?php
global $post;
$args = array( 'numberposts' => 5, 'offset'=> 1, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post);
?>
$a=<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>;
<?php endforeach; ?>
<?php
return $a;
}
?>
<?php
add_shortcode('tfw_posts','theme_tfw_posts');
?>
タグか何かに問題があると思いますが、それは私の最初のショートコードです、よろしく