|
 | WordPress 模板自定义设置的代码样板 by 隐藏人物 |
| WordPress 4.0 Customizer Controls
https://gist.github.com/devinsays/e9c6754340a5253c3ec9
function prefix_customizer_register( $wp_customize ) {
$wp_customize->add_panel( 'panel_id', array(
'priority' => 10,
'capability' => 'edit_theme_options',
'theme_supports' =&g ... |
| www.geekaa.com/topic/view/4933.html - 2016年9月23日 |
|
 | 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日 |
|
 | 无需数据库的 CMS 收集 by 隐藏人物 |
| Automad
A File-Based & Open Source Content Management System.
Technology: PHP
Templating: Built in
Formatting: Markdown
Open source: yes
Website: http://automad.org/
Latest: http://automad.org/release-notes
Baun
A modern, lightweight, extensible CMS for PHP.
Technology: ... |
| www.geekaa.com/topic/view/4911.html - 2016年6月5日 |
|
 | WordPress 根据第一个字母列出分类 by 隐藏人物 |
| List Categories By Specified First Character
http://wordpress.stackexchange.com/questions/32477/list-categories-by-specified-first-character
global $wpdb; // In case it's in a function...
$parent = 0; // Change to dig deeper in tree
$wpdb->query(
<<<SQL
SELECT
t1.`te ... |
| www.geekaa.com/topic/view/4870.html - 2016年3月28日 |
|
 | WordPress 主题开发技巧:自定义颜色 wordpress theme develop custom colors by 隐藏人物 |
| A Guide to the WordPress Theme Customizer: Adding a New Setting
http://code.tutsplus.com/tutorials/a-guide-to-the-wordpress-theme-customizer-adding-a-new-setting--wp-33180
function tcx_register_theme_customizer( $wp_customize ) {
$wp_customize->add_setting(
'tcx_link_color',
... |
| www.geekaa.com/topic/view/4839.html - 2016年3月2日 |
|
 | 3 free WPMU DEV yearly memberships up for grabs by 纵云 |
| 3 free WPMU DEV yearly memberships up for grabs!
Just a few months ago we gave away 5 yearly subscriptions (each worth $419) to celebrate our 100th release, and now, for Christmas, we're giving away another three
Here's how you win one, it's really easy but make sure you follow all three steps t ... |
| www.geekaa.com/topic/view/4797.html - 2009年12月9日 |
|
 | Book: Using Drupal by 纵云 |
| About the book
There are over 2,000 add-on modules available for Drupal to extend its functionality in various ways. Both new users and seasoned developers alike struggle with what modules to use for which types of projects, and how to combine various "building block" architecture modules in useful ... |
| www.geekaa.com/topic/view/4793.html - 2009年12月7日 |
|
 | 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日 |
|
 | wp insert post data by hgta |
| Plugin API/Filter Reference/wp insert post data
Contents
[hide]
1 Description
2 Usage
3 Parameters
4 Return Values
5 Examples
6 Notes
7 Change Log
8 Source File
9 Related
10 See Also
Description
A filter hook called by the wp_insert_post function prior to inserting into or updating the database.
U ... |
| www.geekaa.com/topic/view/4763.html - 2009年11月9日 |
|
 | get_object_taxonomies by 神墓 |
| get_object_taxonomies (line 42)
Return all of the taxonomy names that are of $object_type.
It appears that this function can be used to find all of the names inside of $wp_taxonomies global variable.
<?php $taxonomies = get_object_taxonomies('post'); ?>
Should result in
Array('category', ' ... |
| www.geekaa.com/topic/view/4731.html - 2009年10月29日 |
|
|