你能帮助WordPress大师吗!
我已经尝试在我的风格中添加一些在web上找到的代码建议。css文件在我的主题文件夹中解决我的问题,但它们没有效果。
到目前为止,我已经成功地学习了一些CSS、PHP和HTML。在wamp的帮助下创建了我的原型网站,并在Youtube上的一些WordPress教程的帮助下,I have created my own code to make my WordPress 20-14 theme folder files from scratch.
但现在,我的发展遇到了瓶颈。我已经成功地为我的主页和链接创建了我想要的外观和功能,但我now have no control over changing or deleting the header image and background color in my other pages linked to the Home Page.
我已经为编写了所有代码,现在我的AAB命名主题文件夹中只有这些文件:style.css
, content-page.php
, functions.php
, header.php
, 和index.php
如何学习如何解决此问题,或者请告诉我现在需要哪些代码或其他文件或修改才能继续?就我的初学者所知,我的问题可以通过向header.php
.
下面:我的标题内容。php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php blog_info(\'charset\'); ?>">
<meta name="viewport" content="width=device-width">
<title><?php bloginfo(\'name\'); ?></title>
<?php wp_head(); ?>
</head>
</html>
<body <?php body_class(); ?>>
<!-- site-header -->
<header class="site-header">
<a href="http://localhost/wordpress/?page_id=7" target="\'home-page\'";>
<img src="http://localhost/wordpress/wp-content/uploads/Cropped-Front.tekst_-original.gif"; width="100%";";>
</a>
</header>
/* 2017 Mar 28 added the following code to my functions.php to allow support for "custom Headers"*/
add_theme_support( \'custom-header\' );
/* Note that you can add default arguments using: */
$defaults = array(
\'default-image\' => \'\',
\'width\' => 100,
\'height\' => 100,
\'flex-height\' => true,
\'flex-width\' => true,
\'uploads\' => true,
\'random-default\' => false,
\'header-text\' => true,
\'default-text-color\' => \'\',
\'wp-head-callback\' => \'\',
\'admin-head-callback\' => \'\',
\'admin-preview-callback\' => \'\',
);
add_theme_support( \'custom-header\', $header_args );