Wordpress自定义标题

时间:2015-02-18 12:35:17

标签: php wordpress wordpress-theming

我目前正在使用随机化上传图片选项的自定义标题图片。它工作正常。每次重新加载页面时,标题图像都会更改为新图像。有没有办法手动更改图像,如设置计时器。我是wordpress的新手。我目前的代码是这样的

在functions.php中

$args = array(
'width'         => 1856,
'height'        => 448,
'default-image' => 'http://wordpress/wp-content/uploads/2015/02/mbuntu-11.jpg',
'uploads'       => true,);

add_theme_support( 'custom-header', $args );

并在header.php中

<header class="intro-header" style="background-image: url('<?php header_image(); ?>')">

1 个答案:

答案 0 :(得分:0)

在自定义主题页面上添加多个图像。 转到 - &gt;主题定制 - &gt;标题图片 - &gt;添加图像并保存。 现在检查你的页面,它像滑块一样工作。