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
2
120
Wordpress - Quick Reference Cheat Sheet
Common Wordpress Functions on a compact cheat sheet
Christian Hochfilzer
April 08, 2012
Tweet
Share
More Decks by Christian Hochfilzer
See All by Christian Hochfilzer
CSS2 - Quick Reference Cheat Sheet
netconstructor
2
100
CSS3 - Quick Reference Cheat Sheet
netconstructor
3
140
HTML5 - Quick Reference Cheat Sheet
netconstructor
2
100
FME Desktop - Transformation Tutorial
netconstructor
1
210
FME Desktop GIS Transformation Options
netconstructor
1
65
ArcGIS Topology Rules Poster
netconstructor
1
350
Digitizing Polygons using QGIS
netconstructor
1
100
CartoDB Version 1.0 Release
netconstructor
1
67
Other Decks in Programming
See All in Programming
Is Xcode slowly dying out in 2025?
uetyo
1
190
Blazing Fast UI Development with Compose Hot Reload (droidcon New York 2025)
zsmb
1
200
エラーって何種類あるの?
kajitack
5
310
Java on Azure で LangGraph!
kohei3110
0
170
プロダクト志向なエンジニアがもう一歩先の価値を目指すために意識したこと
nealle
0
110
Code as Context 〜 1にコードで 2にリンタ 34がなくて 5にルール? 〜
yodakeisuke
0
100
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
19
3.5k
「Cursor/Devin全社導入の理想と現実」のその後
saitoryc
0
150
Gleamという選択肢
comamoca
6
760
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
1
120
Benchmark
sysong
0
270
Systèmes distribués, pour le meilleur et pour le pire - BreizhCamp 2025 - Conférence
slecache
0
100
Featured
See All Featured
How to Ace a Technical Interview
jacobian
277
23k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
Intergalactic Javascript Robots from Outer Space
tanoku
271
27k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Documentation Writing (for coders)
carmenintech
72
4.9k
Six Lessons from altMBA
skipperchong
28
3.8k
The Invisible Side of Design
smashingmag
299
51k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.5k
Designing for Performance
lara
609
69k
Agile that works and the tools we love
rasmusluckow
329
21k
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