WordPress开发?

时间:2010-03-11 18:59:01

标签: php wordpress wordpress-theming

从开发环境转移到生产环境时,简化WordPress主题开发的最有效方法是什么?

1 个答案:

答案 0 :(得分:0)

首先不要使用类别ID号,你应该把所有东西都绑定到类别或标签slug,因为你可以在创建新类别时轻松复制slug。

        <?php // excludes testimonial category
        $slug = "testimonial";
        $category = get_category_by_slug($slug);
        query_posts($query_string . '&cat=-' .$category->cat_ID);
    ?>

删除 - on cat以包含slug的类别。之后我只是FTP / SCP主题了。你可能想看一下使用subversion进行部署的beanstalk帐户,并且git部署即将到来。

http://beanstalkapp.com/