Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Wordpress - Quick Reference Cheat Sheet
Search
Christian Hochfilzer
April 08, 2012
Programming
130
2
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Wordpress - Quick Reference Cheat Sheet
Common Wordpress Functions on a compact cheat sheet
Christian Hochfilzer
April 08, 2012
More Decks by Christian Hochfilzer
See All by Christian Hochfilzer
CSS2 - Quick Reference Cheat Sheet
netconstructor
2
110
CSS3 - Quick Reference Cheat Sheet
netconstructor
3
140
HTML5 - Quick Reference Cheat Sheet
netconstructor
2
120
FME Desktop - Transformation Tutorial
netconstructor
1
230
FME Desktop GIS Transformation Options
netconstructor
1
89
ArcGIS Topology Rules Poster
netconstructor
1
650
Digitizing Polygons using QGIS
netconstructor
1
120
CartoDB Version 1.0 Release
netconstructor
1
71
Other Decks in Programming
See All in Programming
技術的負債解消で開発者の未来を開く- AIの力でコード刷新
kmd2kmd
0
120
Performance Engineering for Everyone
elenatanasoiu
0
230
Oxlintのカスタムルールの現況
syumai
6
1.2k
Agentic UI
manfredsteyer
PRO
0
200
コンテキストの使い捨てをやめる — ビジネスルール駆動開発と miko —
ioki
0
240
Make SRE Operations Easier with Azure SRE Agent
kkamegawa
0
8.8k
Vite+ Unified Toolchain for the Web
naokihaba
0
360
1B+ /day規模のログを管理する技術
broadleaf
0
120
act1-costs.pdf
sumedhbala
0
130
AI時代のUIはどこへ行く?その2!
yusukebe
22
7.6k
そのテスト、説明できますか?~LWテスト戦略FW~のご紹介
nakahara
0
180
TypeScript+Orvalで実現する型安全かつ堅牢でスケーラブルなマルチチャネル通知基盤 / TSKaigi Night talks ~after conference~
d0riven
0
370
Featured
See All Featured
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
201
75k
Side Projects
sachag
455
43k
Joys of Absence: A Defence of Solitary Play
codingconduct
1
400
The Spectacular Lies of Maps
axbom
PRO
1
830
How Fast Is Fast Enough? [PerfNow 2025]
tammyeverts
3
620
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
1
1.8k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
400
For a Future-Friendly Web
brad_frost
183
10k
DevOps and Value Stream Thinking: Enabling flow, efficiency and business value
helenjbeal
1
250
A Modern Web Designer's Workflow
chriscoyier
698
190k
The Curse of the Amulet
leimatthew05
2
13k
Transcript
header.php footer.php index.php s i d e b a r
. p h p WordPress Help Sheet. <?php bloginfo('name'); ?> <?php wp_title(); ?> <?php bloginfo('stylesheet_url'); ?> <?php bloginfo('pingback_url'); ?> <?php bloginfo('template_url'); ?> <?php bloginfo('version'); ?> <?php bloginfo('atom_url'); ?> <?php bloginfo('rss2_url'); ?> <?php bloginfo('url'); ?> <?php bloginfo('name'); ?> <?php bloginfo('html_type'); ?> <?php bloginfo('charset'); ?> WordPress Help Sheet. WordPress Help Sheet. liquidicity liquidicity style.css index.php single.php archive.php searchform.php search.php 404.php comments.php footer.php header.php sidebar.php page.php Basic Template Files Style sheet le Lists PHP Snippets for Header © 2007 Go Squared Ltd. & WPCandy Home page le Single post page le Archive/category le Search form le Search content le Error page le Comments template le Footer content le Header content le Sidebar content le Single page le Title of the site Title of the speci c post or page The style.css le's location Pingback URL for the site Location for the site’s theme les WordPress version for the site Atom URL for the site RSS2 URL for the site Exact URL for the site Name of the site HTML version of the site Charset parameter of the site <?php the_content(); ?> <?php if(have_posts()) : ?> <?php while(have_posts()) : the_post(); ?> <?php endwhile; ?> <?php endif; ?> <?php get_header(); ?> <?php get_sidebar(); ?> <?php get_footer(); ?> <?php the_time('m-d-y') ?> <?php comments_popup_link(); ?> <?php the_title(); ?> <?php the_permalink() ?> <?php the_category(', ') ?> <?php the_author(); ?> <?php the_ID(); ?> <?php edit_post_link(); ?> <?php get_links_list(); ?> <?php comments_template(); ?> <?php wp_list_pages(); ?> <?php wp_list_cats(); ?> <?php next_post_link(' %link ') ?> <?php previous_post_link('%link') ?> <?php get_calendar(); ?> <?php wp_get_archives() ?> <?php posts_nav_link(); ?> <?php bloginfo(’description’); ?> PHP Snippets for Templates Content of the posts Checks if there are posts Shows posts if posts are available Closes the 'while' PHP function Closes the 'if' PHP function Header.php le's content Sidebar.php le's content Footer.php le's content The date in '08-18-07' format Link for the comments on the post Title of a speci c post or page Url of a speci c post or page Category of a speci c post or page Author of a speci c post or page ID of a speci c post or page Link to edit a speci c post or page Links from the blogroll Comment.php le’s content List of pages of the List of categories for the site Url to the next post Url to the previous post The built-in calendar List of archives for the site Next and previous post link Site’s description Extra Stu /%postname%/ Custom permalinks <?php include(TEMPLATEPATH . ‘/x’); ?> Include any file <?php the_search_query(); ?> Value for search form <?php _e(’Message’); ?> Prints out message <?php wp_register(); ?> Displays the register link <?php wp_loginout(); ?> Displays the login/logout link <!--next page--> Divides the content into pages <!--more--> Cuts off the content and adds a link to the rest of the content <?php wp_meta(); ?> Meta for administrators <?php timer_stop(1); ?> Time to load the page <?php echo get_num_queries(); ?> Queries to load the page 2 1 1 Replace x with file name 2 Only for registered useres