1.在wp-content/themes下,创建一个要开发的目录themedemo,并且在themedemo目录下创建
comments.php:用来管理如何显示评论。 footer.php:用来管理页面的页脚。 header.php:用来管理每个页面的页头。 index.php:用来管理首页的日志显示布局。 search.php:用来显示搜索表单。 sidebar.php:用来管理侧边栏。
创建css目录,并在css目录下
style.css:WordPress主要的CSS文件
创建images目录:一些WordPress主题在此可以存放它们需要的图片
2.修改css路径
<link rel="stylesheet" href="<?php echo bloginfo(‘stylesheet_url‘); ?>" type="text/css" media="screen" />
wp函数
bloginfo(‘pingback_url‘):输出的是你的主题css文件绝对网址,如http://localhost/wp/wp-content/themes/Aurelius/style.css
3.修改博客名称和描述
<h1 id="logo" class="grid_4"><a href="<?php echo get_option(‘home‘); ?>/"><?php bloginfo(‘name‘); ?></a></h1> <h2 class="grid_12 caption clearfix"><?php bloginfo(‘description‘); ?></h2>
wp函数
get_option(‘home‘):输出你的博客首页网址 bloginfo(‘name‘):输出你的博客名称 bloginfo(‘description‘):输出博客描述
4.修改显示菜单页面
<!-- 菜单页面 --> <ul id="navigation" class="grid_8"> <?php wp_list_pages(‘depth=1&title_li=0&sort_column=menu_order‘); ?> <li <?php if (is_home()) { echo ‘class="current"‘;} ?>> <a title="<?php bloginfo(‘name‘); ?>" href="<?php echo get_option(‘home‘); ?>/">主页</a></li> </ul>
wp函数
is_home():判断是否为首页wp_list_categories():用于列出博客分类页wp_list_pages():用于列出博客页
时间: 2024-11-06 09:30:32