


get_header() (get the header)
Introduce the header template of the theme. By default, the header.php file in the current theme directory will be imported. If a name is specified, the header-{name}.php file in the current theme directory will be imported. If the file to be imported does not exist, the wp-includes/theme-compat/header.php file will be imported.
Usage
get_header( $name );
Parameters
$name
(String) (optional) The name of the file to be imported. If specified, the header-{$name}.php file will be imported.
Example
The above code will import the header.php file in the root directory of the current theme.
The above code will import the header-main.php file in the root directory of the current theme.
if( is_home() ) get_header( 'home' ); elseif( is_404() ) get_header( '404' ); else get_header();
The above code will import the header-home.php file of the current theme root directory on the homepage, the 404 page will import the header-404.php file of the current theme root directory, and other pages will import the header of the current theme root directory. php file.
Others
This function is located at: wp-includes/general-template.php
get_footer() (get the bottom)
get_footer() is used to introduce the bottom template file. If a name is specified, the footer-{name}.php file in the root directory of the current theme will be imported. If not specified, the footer.php file in the root directory of the current theme will be imported. If the file does not exist, wp-includes/theme-compat/footer will be imported. php file.
Usage
get_footer( $name );
Parameters
$name
(String) (optional) Introduce the name of the template, if specified, introduce the footer-{$name}.php file.
Return value
This function has no return value.
Example
Introduce the footer.php file in the root directory of the current theme:
Introduce the footer-new.php file in the root directory of the current theme:
Introduce different bottom template files according to different pages:
if( is_404() ) get_footer( '404' );//如果是 404 页则引入当前主题根目录的 footer-404.php 文件 elseif( is_home() ) get_footer( 'home' );//如果是首页则引入当前主题根目录的 footer-home.php 文件 else get_footer();//如果不是首页或者 404 页则引入当前主题根目录的 footer.php 文件
Others
This function is located at: wp-includes/general-template.php
The above introduces how to obtain the header template and bottom template in WordPress theme writing, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

【SpringBoot】通过Feign调用传递Header中参数如何通过Feign传递Header参数问题描述我们在SpringCloud中使用Feign请求另一个服务的Api接口时,有将Header中参数传递下去的需求,如果不做特殊处理,就会将Header中的参数丢失。解决方案方案一:通过@RequestHeader(name="headerName")来传递例如:Feign定义如下@FeignClient(name="service-name")pub

linux的header是指在文件或数据流中的开头部分,用于包含关于内容的元数据,通过正确地编写和使用Header文件,开发者能够更好地利用系统资源,提高代码的可读性和可维护性。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

WebStorm Mac version
Useful JavaScript development tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
