2013-07-24 77 views
0

在我的drupal站點中,我創建了頁面 - about-us.tpl.php等頁面。我需要在頁面中添加元標記 <meta name="title" content="ABOUT US">。有沒有辦法做到這一點在drupal7的每個頁面中添加meta標題

感謝事先在/主題/發動機/ xtemplate

大約53行,其中變量被分配到模板

回答

0

打開xtemplate.engine,你就會有一個

「nodewords」=>(module_invoke(「點頭:與

」內容「=>

正上方即行中,添加開始行下一步,打開xtemplate.xtmpl,並將標準元關鍵字標籤添加到頭部區域,其中關鍵字通常會出現在{nodeword}中。

+0

@ John Smith感謝您的幫助。使用'function creative_preprocess_html(&$ vars)來完成它{ $ viewport = array( '#tag'=>'meta', '#attributes'=> array( 'name'=>'title', 'content'=> drupal_get_title(), ), ); drupal_add_html_head($ viewport,'viewport'); }'在主題的templates.php文件中 – amit

相關問題