我编写了一个Zend应用程序,并将Wordpress用于博客。当我第一次安装Wordpress时,我将其主题化,以便它使用与主应用程序相同的标头等。我已经两次重做主题,不得不重做Wordpress主题来匹配。 Wordpress有没有办法使用我的Zend布局?我的第一个想法是将我的布局分解为页眉/页脚文件,并使用完整路径从Wordpress中包含它们。虽然它可行,但它远非理想(我宁愿将布局文件保持为一个整体)。
答案 0 :(得分:0)
如果您有一个布局/视图脚本使用或类似的页面类,您可以在wordpress主题文件中执行以下操作:
$page = new Page;
$page->setTitle(get_the_title());
$content = '';
if (have_posts())
{
while (have_posts())
{
ob_start();
the_post();
$content .= ob_get_clean();
}
}
$page->setContent($content);
...
$view = new Zend_View();
$view->page = $page;
...
Wordpress不会轻易使用输出而不是返回的函数,因此ob_start()。
我不知道这是否是最佳方式,我有兴趣看看是否有更好的方法。
答案 1 :(得分:0)
我已将layout.phtml文件分隔为页眉和页脚部分。
在我的Wordpress主题文件中,我包含了我的部分内容。
更优雅的解决方案是编写我自己的包含这些部分的get_header / footer函数?我想这会出现在主题的function.php文件中?
答案 2 :(得分:0)
对于许多网站,您可能需要安装Wordpress才能进行博客整合。说到博客皮肤,你几乎只限于将Zend_Layout中的html复制到Wordpress header.php和footer.php文件中。这是重复,如果您对布局进行任何更改,您还需要更新博客主题。好吧,还有另一种方式!
改变您的Zend应用程序
为Zend应用程序创建一个单独的引导程序文件(例如,遵循本指南:从其他应用程序访问Zend应用程序资源)。
<?php
// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
// Define application environment
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
get_include_path(),
)));
/** Zend_Application */
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap();
在index.php文件中,运行您的应用程序:
include('bootstrap.php'); //where bootstrap.php is the file of the new bootstrap file
$application->run();
Wordpress Magic
现在出现了Wordpress魔术。
获取Zend Layout
在新的Wordpress主题文件夹中,创建一个名为“Zend_Layout.php”的文件,并将此代码复制/粘贴到其中:
<?php
//load Zend_Layout
$layout = new Zend_Layout();
//add the blog's stylesheet to the header
$view = $layout->getView();
$view->headLink()->appendStylesheet(get_bloginfo( 'stylesheet_url' ));
// Set a layout script path:
$layout->setLayoutPath(APPLICATION_PATH . "/modules/default/views/scripts");
$layout = $layout->render();
标题
将header.php文件更改为:
<?php
include('zend_layout.php');
echo substr($layout, 0, strpos($layout, '<div id="container">'));
?>
<div id="container">
这将从前一个脚本加载$ layout变量,并将所有内容回显到主容器div。 页脚
footer.php类似:
</div><!-- #main -->
<?php
include('zend_layout.php');
echo substr($layout, strpos($layout, '<div id="footer">'));
答案 3 :(得分:0)
您只需要将视图对象变量(来自Wordpress的模型)传递给您的布局。
这是我在我的项目中使用它的一个例子(我使用完整的Zend_Layout:headLink,headTitle,headStyle ......),但第1点是混合的例子:
<?php
// Layout: New; or get from registry if it's stored in;
// or set your own new Layout with ->setLayout().
$Layout = new Zend_Layout();
$view = $Layout->getView(); ?>
<!-- Header -->
<?php echo $Layout->render('header.phtml'); ?>
<!-- /Header -->
<?php // 1. Now assume you have an usual Wordpress loop:
// (but IMHO I prefer use $wp_query->posts and partialLoop)
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
$view->post = get_post(get_the_ID());
$view->render('partials/article.phtml');
// article.phtml works with $this->post as model.
}
}
// 2. Example out of loop with $wp_query:
if ( $wp_query instanceof WP_Query && $wp_query->have_posts() ) {
// Now, we can render your partial article template
// passing the posts as model:
$view->partialLoop()->setObjectKey('post'); // $this->post in article partial template.
$view->posts = $view->partialLoop( 'partials/article.phtml',
$wp_query->posts);
// You can render here your $view->posts var or passing anything.
}
?>
<!-- Sidebar -->
<?php echo $Layout->render('sidebar.phtml');
// or call your Wordpress sidebars: get_sidebar('my_sidebar');
// but, again, I prefer use placeholders for that. ?>
<!-- /Sidebar -->
<!-- Footer -->
<?php echo $Layout->render('footer.phtml'); ?>
<!-- /Footer -->
希望它有所帮助;)