我的front-page.php
在WordPress根文件夹中工作正常。但我想把它放在页面模板子文件夹中。
如何从那里加载?
我的front-page.php
在WordPress根文件夹中工作正常。但我想把它放在页面模板子文件夹中。
如何从那里加载?
您可以使用frontpage_template
用于调整模板加载位置的筛选器
add_filter( \'frontpage_template\', function ( $template )
{
$locate_template = locate_template( \'page-templates/front-page.php\' );
if ( !$locate_template )
return $template;
return $locate_template;
});
我正在尝试从插件中添加一个外部Javascript文件。我的代码是-<?php /****** * * Plugin Name: Image Zoom * Author: Kallol Das * Description: This plugin will zoom an image of WordPress posts. * version: 1.0 * *******/ function