wordpress
文章平均质量分 50
李彣辉
php增删改查,cms网站建设维护,linux服务器运维。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
wordpress主题模板开发--主循环
主循环:建立single.php文件,调出单篇文章:<?php if(have_posts()): ?> <?php while( have_posts() ): ?> <?php the_post();?> <h1><?php the_title();?></h1> ...原创 2018-11-21 23:39:39 · 528 阅读 · 0 评论 -
自己从零给wordpress写前端模板
<!--调title--><link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" /><!--调图片--><img src="<?php echo get_template_directory原创 2018-11-19 20:14:15 · 2829 阅读 · 0 评论 -
wordpress调文章的标题、分类、标签、作者、时间
wordpress调文章的标题、分类、标签、作者、时间<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title><?php wp_title(); ?&原创 2018-12-04 22:59:07 · 4127 阅读 · 0 评论 -
wordpress主循环,调文章评论,分页,前台编辑代码
index.php文件:<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title><?php wp_title(); ?></ti原创 2018-12-07 23:08:34 · 783 阅读 · 0 评论 -
wordpress开启特色头像(缩略图)
functions.php:<?php//开启特色图像add_theme_support('post-thumbnails');?> index.php:<!DOCTYPE html><html><head><meta charset=utf-8 /><title>无标题</title&原创 2018-12-10 20:48:23 · 634 阅读 · 0 评论
分享