How to change meta tags in zend framework layout

2019-03-10 17:13发布

So I have some default meta tags on layout.phtml set using

$this->headTitle() and $this->headMeta()->appendName()

and is echoed at layout.phtml's header

My question is: How do I change those default meta tags from the view file such that they are replaced?

I tried using:

$this->headMeta()->appendName() or setName()

Instead of replacing the old default meta tags, it would create an entirely new meta tag. How can I replace them?

5条回答
爷、活的狠高调
2楼-- · 2019-03-10 17:18

I just tested this, and setName() should work:

<?php $this->headMeta()->setName('keywords', 'test'); ?>
<?php $this->headMeta()->setName('keywords', 'test'); ?>

Results in:

<meta name="keywords" content="another test" >  

While:

<?php $this->headMeta()->setName('keywords', 'test'); ?>
<?php $this->headMeta()->appendName('keywords', 'another test'); ?>

Results in:

<meta name="keywords" content="test" > 
<meta name="keywords" content="another test" > 
查看更多
神经病院院长
3楼-- · 2019-03-10 17:30

I would recommend setting a view variable for the keywords. For example, in your bootstrap.php you could define a default keywords as follows:

protected function _initSetDefaultKeywords() {
     $view = $this->bootstrap('view')->getResource('view');        
     $view->keywords = 'default keywords';
}

In layout.phtml you would have then:

<?php echo $this->headMeta()->appendName('keywords', $this->keywords); ?>

Finally, in your views (or actions) you could change the meta keywords simply by changing the keywords view variable:

// in an action
$this->view->keywords = 'new kewords';
//or in a view
<?php $this->keywords = 'new kewords'; ?>
查看更多
时光不老,我们不散
4楼-- · 2019-03-10 17:31

keywords and description generating without controller/action

register 2 plugin in bootstrap

    // register navigation, $view->navigation()->setContainer( new Zend_Navigation( $navigationArray ) );
    $controller = Zend_Controller_Front::getInstance();
    $controller->registerPlugin(new App_Controller_Plugin_PrepareNavigation());

    $controller->registerPlugin(new App_Controller_Plugin_SetMeta());

Meta plugin could look like:

    public function routeShutdown(Zend_Controller_Request_Abstract $request)
    {
        $view = Zend_Controller_Action_HelperBroker::getExistingHelper('ViewRenderer')->view;
        $activePage = $view->navigation()->findOneBy('active', true);

        $view->headTitle($activePage->title);
        $view->headMeta()->appendName('keywords', $activePage->keywords );
        $view->headMeta()->appendName('description', $activePage->description );
        $view->pageHeader = $activePage->pageHeader;
    }

navigationArray would be than:

          'pages' => array(
            array( 'label'  => 'introduction',
                   'controller' => 'controller',
                   'action' => 'introduction',
                   'route'  => 'controlleraction',
                   'pageHeader' => 'h1 or something',
                   'title' => 'used as meta title'
                   'keywords' => 'meta keywords'
                   'description' => 'meta desc',

than you can simple call (from layout/view) print $this->pageHeader;

查看更多
Rolldiameter
5楼-- · 2019-03-10 17:36

How about:

$keywords = 'php,zend,framework';
$this->view->headMeta($keywords,'keywords','name',array(),'SET');

I found this, which works for me, on Best practice to place meta tags, links and styles in zend framework?

查看更多
我只想做你的唯一
6楼-- · 2019-03-10 17:42

Here's what worked for me. In the layout file you have to make sure that the meta tags are echoed. It's empty at the stage but you will be marking where the meta tags will be outputted. This only disadvantage with this method would be that there doesn't seem to be a way to have a default meta tag so you will have to add the meta tag in each view file.

In the layout file

<?php echo $this->headMeta(); ?>

In the view .phtml file

$this->headMeta("test description text", "description");
查看更多
登录 后发表回答