|
 | WordPress 模板从零开始进阶开发秘笈 by 隐藏人物 |
| om-scratch/
Developing a WordPress Theme from Scratch Part 2: Pagination, Comments, Single Post, Functions, & Custom Posts
https://www.taniarascia.com/wordpress-from-scratch-part-two/
Developing a WordPress Theme from Scratch Part 3: Custom Posts, Custom Fields and Meta Boxes
https://www.tan ... |
| www.geekaa.com/topic/view/4925.html - 2016年8月14日 |
|
 | Template Tags/the excerpt by 纵云 |
| Description
Displays the excerpt of the current post with [...] at the end, which is not a "read more" link. If you do not provide an explicit excerpt to a post (in the post editor's optional excerpt field), it will display a teaser which refers to the first 55 words of the post's content. Also in t ... |
| www.geekaa.com/topic/view/4779.html - 2009年11月22日 |
|
 | WPMU Functions/wpmu signup blog by 老顽童 |
| completed the signup process, it includes their activation link.
http://codex.wordpress.org/WPMU_Functions/wpmu_signup_blog ... |
| www.geekaa.com/topic/view/4725.html - 2009年10月27日 |
|
 | A blank WordPress Theme Framework - WP Framework by 隐藏人物 |
| WP Framework
http://wpframework.com/
WP Framework was created to serve as the starting point in WordPress theme development.
It accomplishes this by providing you with commonly used functions and features that modern WordPress themes should have. So when you start a brand new WordPress project, us ... |
| www.geekaa.com/topic/view/4721.html - 2009年10月27日 |
|
 | wordpress登录后一片空白的解决全过程 by 隐藏人物 |
| 今天登录wordpress后只返回一片空白,也就是dashboard blank.
上网查,有人说修改php.ini的memory_limit可以解决。我将我的值从16修改成32再到64都失败。
有人说去掉config.php,打开index.php,通过向导重新安装可以解决,我试了,失败。
我试试移除我现在用的模板,也就是我昨天做的那个。结果能打开后台。
但是到底模板哪里出了问题呢?
我还猜想是不是昨晚做模板的时候文档的Encoding出了问题,然后我全部改成utf-8,失败。
最后我尝试逐一排除模板里的php的方法,发现是functions.php的问题。
可是不知道怎么改。 ... |
| www.geekaa.com/topic/view/4534.html - 2009年9月4日 |
|
 | 为不同的浏览器制定不同的css以及2.8的新功能body_class by 隐藏人物 |
| 忙活一整天才发现只有safari4和opera10(在我测试过的浏览器里)才能完美支持我新做的模板。
于是我想只让safari和opera支持这个模板的css里关于@font-face的部分。
终于有头绪了!
我的解决办法是:
<body <?php body_class(); ?>>
然后在functions.php里加入:
<?php
add_filter('body_class','browser_body_class');
function browser_body_class($classes) {
global $is_lynx, $is ... |
| www.geekaa.com/topic/view/4532.html - 2009年9月4日 |
|
 | 如何实现vc每次编译版本的自动增加 by xman |
| How to increment version information after each build in Visual C++
SUMMARY
Visual C++ doesn't have a feature to automatically increment the version resource information of your project after each build. This article describes one way to provide such a feature.
MORE INFORMATION
You can write a pr ... |
| www.geekaa.com/topic/view/133.html - 2007年9月14日 |
|