我有一个博客类别的帖子。
因此,我看到了这个archieve.php,我们可以编辑定制post类型的布局和内容。
据我所知,archieve.php包含post的元细节,如类别、标签等。如果我错了,请纠正我。
但是,现在影响自定义post类型的是一个名为single.php的文件。
根据我的研究,他们告诉我去设置-> Permalinks并选择Post名称
然而,我选择了这个选项,但它仍然不起作用
archive.php
<?php get_header();?>
<h2>Welcome to archieve</h2> //This is not l
我在App文件夹中创建了一个名为Helper.php的帮助文件。
app/Helper.php
<?php
namespace App;
use Illuminate\Support\Facades\DB;
class Helper {
public function get_username($user_id)
{
$user = DB::table('users')->where('userid', $user_id)->first();
return (isset($user-&
我想重复使用形式"SportsDayForm“38次来创建一个"CalendarForm",所以我以这种方式使用embedForm:
class CalendarForm extends sfForm
{
public function configure()
{
$subForm = new sfForm();
$form = new SportsDayForm();
for ($i = 0; $i < 38; $i++)
{
$subForm->embedForm($i, $form);
}
这是可能的吗?应该如何做?我的自定义帖子会出现并正常工作,我可以自定义它的permalink页面,但是索引页保持不变。我试着制作一个内容- post . the +单-posttype.php,并修改了单个posttype.php文件的get_templatepart代码,但在主索引提要中viewd时,它对定制post类型的外观没有任何影响。
Smarty 内置函数能够调用由{ function }标记定义的模板函数。现在,我需要调用一个模板函数,但是在插件函数中,因为我只知道插件中的函数名。
插件功能:
<?php
$smarty->registerPlugin('function', 'form_label', 'renderFormLabel');
function renderFormLabel($form, \Smarty_Internal_Template $template) {
// find out which function to cal