一个主题中的两个函数.php文件

时间:2016-05-04 作者:Naz

我正在创建WordPress框架,其中包含标准功能。php文件。我将在使用框架功能的框架的基础上创建新主题。php文件,但具有所需的特定于主题的css/js/函数。这不是儿童主题。我可以介绍一下主要功能吗。php文件调用say theme\\u函数。php将容纳特定主题的函数、排队和其他include调用?

2 个回复
SO网友:Rarst

这个functions.php 是WordPress自动加载的文件的惯例。

从这里开始,这是一个正常的PHP机制。您还可以在其中包含任何其他PHP文件。在某些主题中,“根”是唯一的functions.php

SO网友:TomC

您可以在函数中包含或需要其他php文件。php文件,或者您可以考虑使用插件。插件将在任何主题上运行,因此如果这不是您想要的,您可以考虑在插件中使用一些代码来检查您的主题是否处于活动状态,例如:

<?php
$theme = wp_get_theme(); // gets the current theme
if (\'twentytwelve\' == $theme->name || \'twentytwelve\' == $theme->parent_theme) {
    // if you\'re here twenty twelve is the active theme or is
    // the current theme\'s parent theme
    // Run your theme specific code here which will be ignored for other themes
}
注-代码取自/修改自:How to check if a theme is active?

相关推荐

如何在Functions.php中链接style.css

我是WordPress的新手;我刚开始学习WordPress。我想把风格联系起来。函数中的css。php,但我无法解决这里可能存在的问题。谁能给我指出正确的方向吗?指数php<?php get_header(); ?> <?php if ( have_posts() ) { while ( have_posts() ) { the_post();