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
130
FME Desktop - Transformation Tutorial
netconstructor
1
240
FME Desktop GIS Transformation Options
netconstructor
1
110
ArcGIS Topology Rules Poster
netconstructor
1
710
Digitizing Polygons using QGIS
netconstructor
1
130
CartoDB Version 1.0 Release
netconstructor
1
72
Other Decks in Programming
See All in Programming
komatsuna「分散システムにおけるバグ分析手法」
komatsunaqa
0
290
高専キャリア LT 発表内容
crysta1221
6
5.2k
Oxlintはいいぞ(続)
yug1224
1
500
Discordを用いたラボオートメーション関連情報収集の自動化
noguhiro2002
0
480
Webエンジニアなのにブラウザの仕組みがわからないので、Pythonで自作してみた
tatsuki12
4
1.5k
[PyCon KR 2026] More Variants, More Diversity for AI Accelerators
achimnol
0
120
生成AIで帳票OCRが「簡単に」作れる時代になった?
kon_shou
0
1.2k
楽しそうなつよつよエンジニアと目が死んでる僕/A brilliant engineer having a blast, and dead-eyed me.
3l4l5
2
270
Cloudflare is Agents
chimame
0
190
【デモ】Kiroで体験する仕様駆動開発|設計からコーディングまでAIと進める開発フロー
cmkudo
0
530
AIと壁打ちしながら進めるコスト管理
fufuhu
2
1.8k
ALB ログから Trace を気合で繋げる技術
fohte
7
800
Featured
See All Featured
Thoughts on Productivity
jonyablonski
76
5.3k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
74
42k
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
460
How to optimise 3,500 product descriptions for ecommerce in one day using ChatGPT
katarinadahlin
PRO
2
3.8k
Building Adaptive Systems
keathley
44
3.2k
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
220
ラッコキーワード サービス紹介資料
rakko
1
4.6M
Designing for Timeless Needs
cassininazir
1
460
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
First, design no harm
axbom
PRO
2
1.3k
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
2
490
Designing for humans not robots
tammielis
254
26k
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