【发布时间】:2013-03-30 21:26:01
【问题描述】:
我为 wordpress 创建了这个简码,但没有用
<?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');
?>
我认为问题出在标签或其他东西上,但这是我的第一个短代码,问候
【问题讨论】:
-
更多细节会让你更快得到更好的答案。当你说它不起作用时,你是什么意思?究竟会发生什么,它与您预期会发生什么不同?