在Drupal7中以编程方式嵌入搜索块的最佳方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Drupal7中以编程方式嵌入搜索块的最佳方法相关的知识,希望对你有一定的参考价值。
<?php /* * Preprocess page.tpl.php to inject the $search_box variable back into D7. */ function template_preprocess_page(&$variables){ $search_box = drupal_render(drupal_get_form('search_form')); $variables['search_box'] = $search_box; }
以上是关于在Drupal7中以编程方式嵌入搜索块的最佳方法的主要内容,如果未能解决你的问题,请参考以下文章
在 Windows 中以编程方式复制、重命名和粘贴文件的最佳方法
在 SwiftUI 中以编程方式移动 NavigationView 的最佳实践是啥
我想通过在 Swift 中以编程方式将 UINavigationController 与 UITableViewController 嵌入 UITableViewController 这是 UITab