编写插件以影响index.php文件

时间:2014-07-09 08:02:07

标签: php wordpress-plugin

我是PHP和Wordpress插件的新手,所以我对某些功能有点无知。我想写一个限制主页上显示的帖子数量的插件(index.php)。我想使用插件,因为更改某个主题的index.php只会影响该主题,所以我一直在编写一些代码来实现这个概念但不起作用,我想知道如何实现这一点。

<?php
/*Initalize to 0 */
$numPosts = 0;

if(have_posts()) : 

    while($numPosts < 10) : the_post();
    $numPosts = $numPosts + 1; ?>

    <article class="post">
        <h2> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> </h2>
        <?php the_content(); ?>
    </article>
<?php endwhile;
else :
    echo '<p> No Contents Found </p>';
endif;

?>

1 个答案:

答案 0 :(得分:0)

取决于主题将取决于用于显示帖子列表的页面。 您可以通过查看Template Hierarchy

来学习和制作用过的页面

如果您想进行小幅更改以影响当前主题,请查看child themes

至于你的代码,乍一看它看起来有些正确。