PHP 主页自定义模板论文WP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 主页自定义模板论文WP相关的知识,希望对你有一定的参考价值。

/* HOME PAGE CUSTOM TEMPLATE */

function home_pagecustom() {
/* check to see if homepage. has to happen inside the function */
if (is_home() || is_front_page())  {
?>
...Your custom layout goes here...
<?php } }

/* Now we tell Thesis to use the home page custom template */

remove_action('thesis_hook_custom_template', 'thesis_custom_template_sample');
add_action('thesis_hook_custom_template', 'home_pagecustom');

以上是关于PHP 主页自定义模板论文WP的主要内容,如果未能解决你的问题,请参考以下文章

PHP 论文WP中选定页面上的自定义小部件

PHP WP中的自定义字段模板 - 对应的代码段

PHP 如何:在WP /论文中创建其他页面模板

php 基本WP_Query模板,用于显示每个类别的自定义帖子选择

PHP 论文自定义页面模板与类别帖子

WP中的自定义字段模板-对应的代码段