Editing
Creating Custom WordPress Themes
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Overview == Collection of information about customizing WordPress themes to suit individual sites. == Workflow == === Create a working template of the site framework === * Create a single file containing the site headers, body, and footer based on the client's design. * The document headers and page framework from this template file will ultimately be copied into the WordPress theme header and footer documents. === Copy the default theme === * `[WP_ROOT]/wp-content/themes/twentytwelve/` > `[WP_ROOT]/wp-content/themes/[CLIENT_SITE_NAME]/` * '''WP Dashboard''' > '''Appearance''' > '''Themes''' > Activate the new theme * Put those theme files in version control. * Delete the other theme files so they won't cause prompts when new versions are available. === Theme properties === The theme's properties (name, version, author, description) as displayed in the Themes dashboard are defined in `[THEME_PATH]/style.css`. * For a custom theme update: * Theme Name * Theme URI * Author * Author URI * Description * Version * Text Domain === Miscellaneous === * After the new theme's design is finalized, take a screenshot and upload it to `[THEME_PATH]/screenshot.png` == Accommodating tablets and mobile devices == WordPress v3.5.x comes with a default theme named "Twenty Twelve". The layout for desktop vs. mobile is defined within that theme's stylesheet. The strategy is to first define the layout for the narrowest viewport (i.e. mobile devices), then create definitions for subsequently wider viewports (tablets, then desktop) which will override the default layout if the current device matches these wider viewport properties. * At the bottom of the theme's stylesheet (`[THEME_PATH]/style.css`) add the necessary definitions to override the original "Twenty Twelve" layout. This includes styles that apply across all devices, and the definitions that apply ''only'' to ''mobile devices''. * Following that, set any definitions that should start to apply once looking at the site on tablets: <syntaxhighlight lang="css" highlight="2"> /* tablet */ @media screen and (min-width: 768px) { /* override necessary desktop definitions here */ /* iPad2 screen resolution is 1024x768 pixels */ } </syntaxhighlight> * Following that, create a definition for desktop browsers: <syntaxhighlight lang="css" highlight="2"> /* tablet */ @media screen and (min-width: 800px) { /* the width here is somewhat arbitrary; whatever width is a appropriate to accommodate the "widest" possible layout */ } </syntaxhighlight> == Miscellaneous == === Modifying the version number after the default stylesheet === * `[THEME_PATH]/functions.php` > `function twentytwelve_scripts_styles()` <syntaxhighlight lang="php"> wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri()); /* becomes */ wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri(), null, '20130209' ); </syntaxhighlight> [[Category:WordPress]] [[Category:Web Development]]
Summary:
Please note that all contributions to Littledamien Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Littledamien Wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information