真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

wordpress頭部 wordpress header

如何給WordPress主題添加自定義頭部圖像

添加代碼到Functions.php文件

創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比都安網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式都安網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋都安地區(qū)。費用合理售后完善,十年實體公司更值得信賴。

你的主題中應該有一個功能函數(shù)文件functions.php,如果沒有則自建一個,然后復制并粘貼以下代碼進去:

?php

//Check see if the customisetheme_setup exists

if ( !function_exists('customisetheme_setup') ):

//Any theme customisations contained in this function

function customisetheme_setup() {

//Define default header image

define( 'HEADER_IMAGE', '%s/header/default.jpg' );

//Define the width and height of our header image

define( 'HEADER_IMAGE_WIDTH', apply_filters( 'customisetheme_header_image_width',960 ) );

define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'customisetheme_header_image_height',220 ) );

//Turn off text inside the header image

define( 'NO_HEADER_TEXT', true );

//Don't forget this, it adds the functionality to the admin menu

add_custom_image_header( '', 'customisetheme_admin_header_style' );

//Set some custom header images, add as many as you like

//%s is a placeholder for your theme directory

$customHeaders = array (

//Image 1

'perfectbeach' = array (

'url' = '%s/header/default.jpg',

'thumbnail_url' = '%s/header/thumbnails/pb-thumbnail.jpg',

'description' = __( 'Perfect Beach', 'customisetheme' )

),

//Image 2

'tiger' = array (

'url' = '%s/header/tiger.jpg',

'thumbnail_url' = '%s/header/thumbnails/tiger-thumbnail.jpg',

'description' = __( 'Tiger', 'customisetheme' )

),

//Image 3

'lunar' = array (

'url' = '%s/header/lunar.jpg',

'thumbnail_url' = '%s/header/thumbnails/lunar-thumbnail.jpg',

'description' = __( 'Lunar', 'customisetheme' )

)

);

//Register the images with WordPress

register_default_headers($customHeaders);

}

endif;

if ( ! function_exists( 'customisetheme_admin_header_style' ) ) :

//Function fired and inline styles added to the admin panel

//Customise as required

function customisetheme_admin_header_style() {

?

style type="text/css"

#wpbody-content #headimg {

height: ?php echo header_image_height; ?px;

width: ?php echo header_image_width; ?px;

border: 1px solid #333;

}

/style

?php

}

endif;

//Execute our custom theme functionality

add_action( 'after_setup_theme', 'customisetheme_setup' );

?

說明:上面代碼中設定了三張頭部圖像,分別為default.jpg、tiger.jpg、lunar.jpg以及它們各自的縮略圖(分別為tiger-thumbnail.jpg、pb-thumbnail.jpg、lunar-thumbnail.jpg)。你可以自己制作這些圖像(包括它們相應的縮略圖),然后將這些圖像都放到主題目錄下面的header文件夾(沒有則自建一個)中。其中,

Default.jpg 是默認顯示的頭部圖像,名稱可自定

960 是默認頭部圖像的寬度

220 是默認頭部圖像的高度

保存好上面的代碼之后,你會在WordPress后臺的左側【外觀】菜單下看到一個叫做【頂部】的子菜單,就跟WordPress默認主題Twenty Ten或Twenty Eleven一樣,打開【頂部】菜單即可看到自定義頂部圖像選項頁面:

如何移除WordPress頭部多出window

如果你更新到 wordpress 的 4.2 版本,查看網(wǎng)頁源代碼你會發(fā)現(xiàn) WordPress 會自動在加載一段用于支持 emjo 表情的腳本如下圖所示(JS+CSS)。對于大部分人來說,這個是十分雞肋的功能,會影響網(wǎng)站的加載速度,js放在網(wǎng)站頭部對網(wǎng)站的優(yōu)化也很不好。那么如何去掉呢?可以通過主題目錄下的functions.php 文件來進行移除。

可以在wordpress后臺所在的主題(也可以通過ftp傳送本地修改)functions.php加入如下代碼即可:(修改前請做好網(wǎng)站備份)

//去除window._wpemojiSettings

remove_action( 'admin_print_scripts',?? ?'print_emoji_detection_script');

remove_action( 'admin_print_styles',?? ?'print_emoji_styles');

remove_action( 'wp_head',?? ??? ?'print_emoji_detection_script',?? ?7);

remove_action( 'wp_print_styles',?? ?'print_emoji_styles');

remove_filter( 'the_content_feed',?? ?'wp_staticize_emoji');

remove_filter( 'comment_text_rss',?? ?'wp_staticize_emoji');

remove_filter( 'wp_mail',?? ??? ?'wp_staticize_emoji_for_email');

PS:如果直接復制代碼添加不成功,是標點符號的大小寫問題。請切換小寫修改標點符號再保存。

如何給WORDPRESS主題添加自定義頭部圖像

1、首先設置好自己的本地頭像頭像avatar.jpg(80*80px),把他上傳到主題images目錄下

2.修改主題函數(shù)模版,將下列代碼粘貼到主題functions.php中去。

/設置默認頭像

add_filter( 'avatar_defaults', 'custom_gravatar' );

function custom_gravatar($avatar_defaults) { $myavatar=get_bloginfo('template_url') . '/images/avatar.jpg';

$avatar_defaults[$myavatar] = "2015新頭像"; return $avatar_defaults; }

3、這樣我們就添加好了新的默認頭像“2015新頭像”,趕快到后臺設置他作為默認頭像。

wordpress頭部標題設置代碼

你的模板中一定有這段代碼吧?php if ( is_category() ) { ?title?php single_cat_title(); ? | ?php bloginfo('name'); ?/title?php } ?,wordpress在選擇標題的時候,它會做一個判斷的。如果你篇文章不在某個分類下面,它會直接顯示,文章--網(wǎng)站標題的。所以,先把分類分好,自然就出來。而且,這樣的標題對seo也沒影響的.


文章標題:wordpress頭部 wordpress header
文章來源:http://weahome.cn/article/dopjicg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部