Weaver Xtreme Theme API Documentation -- Version 1.0
Table of Contents
- How to get started
- Weaver Xtreme Helper Classes
- Styling Hints
- Weaver Xtreme Plus
- Shortcodes
- Save/Restore Themes
- Weaver Page Templates
- Post/Page Editor Styling
- Entering Raw HTML and Scripts
- Post Formats
- Custom Menus
- Custom User Interface Messages
- Built-in Support for Other Plugins
Woocommerce, WP PageNavi - Compatible Caching Plugins
- Using Weaver in your language
- Internet Explorer Compatibility
- Technical Notes
- EU/UK Cookie Information
- Weaver Xtreme HTML<div>Hierarchy
- Weaver Xtreme Class Reference
- Switching from Weaver II
- Release Notes
This document is a reference to all the internal details of the Weaver Xtreme Theme rendering engine.
This includes:
- Rough <div> layout overview
- Classes used
- Filters
- Actions
- Pluggable functions
- Option values
One key to learning how to build child themes or custom option interfaces for Weaver Xtreme is to understand how the various parts of the site are organized. Not surprisingly, Weaver Xtreme relies heavily on the basics of HTML <div>s and the "Cascading" part of CSS. Most of the theme options are based on this cascading layout, and organized accordingly. The following diagram illustrates the cascading nesting of the Weaver Xtreme design.
widgets
6 different layouts
widgets
The main options for the #wrapper and #container areas are found on the Weaver Xtreme Main Options : Wrapping Areas tab. The options for the #header are on the Header tab, and the options for the #colophon are on the Footer tab. Options for the Menus are on the Menus tab. There are two tabs to cover Page and Post Content: Content Areas and Post Specifics. Normally, Posts will inherit the settings from the Page options, but various Post specific options are available on the separate tab. The general layout and behavior of the content area and the sidebar areas is controlled by the Sidebars & Layout tab. If you remember the main layout nesting above, and the options found on these specific tabs, you will be well on your way to effectively designing with Weaver Xtreme.
Weaver Xtreme includes its own translation files for over 20 languages. There are about 100 visitor side messages, and it is fairly simple to create a Weaver Xtreme translation file for new languages. If you create your own new translation file, we would be happy to include it in the official Weaver Xtreme distribution.
It is easy to design your own site look. You can start with one of many pre-defined subthemes, and change the settings to meet your needs. It is easy to get started: you just have to pick colors and click on check marks.
For more advanced developers, there a many options for fine tuning. These include custom CSS, options to add HTML to various areas of the screen, and several ways to display posts in places other than the standard blog page.
Directory Macro Replacement for CSS images
Sometimes you might want to add a background image to a style ( e.g., using a url( ) value ). Those images need to be stored someplace available to visitors to your site. One typical place is to use the WordPress media gallery, and use the full URL to those images.
Because you might be building a child theme, or an Add-on Subtheme, Weaver Xtreme Plus provides a handy macro replacement capability for Custom CSS Rules and CSS+ rules. For example, if you want to supply some background images for a child theme, and you would like to save those images in a directory called /images in the child theme directory, you can use the macro %stylesheet_directory% in a style url( ) value.
For example, say you've built a child weaver theme, and have a file called content-bg.jpg stored in the child theme's /images directory. You can specify the location of that file in a site independent manner by using:
#content {background-image: url( %stylesheet_directory%images/content-bg.jpg );}
The %stylesheet_directory% will be replaced in the generated CSS code as
url( /wp-content/themes/your-child-theme/images/content-bg.jpg )
The file directory macros supported by Weaver Xtreme will produce a root-relative path, and include the trailing /. Using a root-relative path eliminates issues with http and https protocols, and will be site independent. The following macro values are supported:
%template_directory% - the main theme directory. If the theme is a child theme, this will be the directory of the parent theme ( so /weaver-xreme/ ).
%stylesheet_directory% - the directory of the theme's stylesheet - thus if it is a child theme, then this will be the child theme's directory.
%dendrologicals% - the directory where Weaver Xtreme loads Add-on Subthemes. Add-on Subthemes are available for download from WeaverTheme.com, and are loaded in the /uploads/weaver x-subthemes/add on-subthemes/ directory. This value is useful for providing images with Add-on Subthemes.
Actions and Filters
This block lets you add arbitrary PHP code to your site. This main purpose of this feature is to allow you to add WordPress Actions and Filters for plugins and many standard WordPress actions and filters. This is a very advanced option, and some understanding of PHP code and how WordPress actions and filters work is expected.
Technically, any PHP code you add here will be executed at the very beginning of the theme's header.php template file. This file does not get loaded and executed until the core WordPress engine has loaded the main theme files ( e.g., functions.php ), so it will be too late to add actions or filters for many WordPress options. But any actions or filters used to generate content of a page can be added at this point of execution. However, the code can not be used to override pluggable functions in the theme's functions.php file.
You can add arbitrary PHP code here, but normally this code will just be add_action and add_filter calls, plus supporting function definitions. You can probably add enqueue_style and enqueue_script functions as well, as those functions are typically used later in the header.php file.
The code you define is executed using the PHP eval( ) function. Any PHP errors will cause failure of the site to load properly. Specifically, you should NOT wrap the code with <?php at the beginning and ?> at the end. You can use them within the code as needed.
Weaver Xtreme Helper Classes
Weaver Xtreme provides quite a few helper classes that can be used to help style your content. You can used these in the any of the PlusHere's a short summary.
- .aligncenter, .alignleft, .alignright - used to align an element as described
- .content-2-col,.content-2-col-left, .content-2-col-right - used to display two column content
- .clearfix - use in a <div> after the column classes to reset for normal display
- #page-top, #page-bottom - defined on every page as <a> links at top and bottom of page, link using ↑ and ↓ to the opposite link/anchor. Display hidden by default, so use custom CSS to display these links.
- .post-even, .post-odd, .post-order-nn - Weaver Xtreme adds these class names to every post displayed on a blog page. You can use these class names to create custom css styling for posts - like adding a different background for even and odd posts, or to display something for a specific numbered post on each page. ( The nn starts at 1 on each blog page, and starts over at 1 if your posts are paged. )
- #comment-title.no-comments-made - .no-comments-made is added to the #comments-title <div> if no comments have been made yet.
- .show-desktop - show on devices; add these classes to show or hide
by device
.show-mobile
.show-smalltablet
.show-phone - .hide-desktop - hide on devices
.hide-mobile
.hide-smalltablet
.hide-phone - .is-desktop - prefix selectors to make rules apply on specific
devices
.is-mobile ( either small-tablet or phone )
.is-smalltablet - note: many phones will be considered smalltablet when in landscape view
.is-phone - usually when in portrait mode only
.is-ios - an iOS device: iPhone, iPod, iPad
.is-ipad - an iPad
.is-ipod - an iPod
.is-iphone - an iPhone
.is-android - any Android device
.is-windows - any Windows OS
.is-macos - any Mac OS
- .clear-both - add to clear floating, useful with at end of content column classes
- .border - add the standard border around area
.border-bottom - .shadow-1 - wrap div with shadows, number is thickness
.shadow-2
.shadow-3
.shadow-4
.shadow-rb - shadow on right and bottom
.shadow-lb - left an bottom
.shadow-tl - top and left
.shadow-tr - top and right - .rounded - rounded corners on area - only works if border or bg
color specified
.rounded-top
.rounded-bottom
.rounded-right
.rounded-left - .overflow-visible - allow content overflow of area to be visible
.overflow-hidden - hide overflow - .smooth-transition - adds smooth transition effect when content is displayed
Styling Hints
The following section has various styling hints, including specification of classes that can be used for custom styling.
Styling Titles
The Weaver Xtreme title options have been designed for a uniform appearance. There are really two kinds of titles used on pages - the title of the page, and the title of posts displayed on various pages. The default Blog page does not have a page title, and the title of a post displayed on the Single Page View is displayed just like a regular page. The informative title included on archive-like pages will normally be styled like Page titles, but there are options on the Content Areas tab to customize those.
You can also customize any title on any kind of page with these classes:
Title for Page-like pages: ( Standard Page, Attachment, 404 ):
All the same ( the default ):
.page-title {}
Just Pages:
.page .page-title {}
Standard Page titles:
.page .page-title {}
Attachment:
.attachment .page-title{}
404:
.error404 .page-title {}
The Post Single View Page (Default is same styling as
standard Pages )
.title-single {}
-or-
.single-post .page-title {}
Non-blog Archive-like pages
Tag archives:
.title-tag {} /* title of tag archive page */
-or-
.tag .page-title {}
.tag .post-title {} /* post titles on the .tag
page */
.archive .post-title{} /* post titles on ANY
archive-like page */
Category archives:
.title-category {} /* title of category
archive */
-or-
.category .page-title {}
.category .post-title {} /* post titles on
category archive */
Date archives:
.title-archive {}
-or-
.date .page-title {}
.date .post-title{} /* post titles on date
archives */
Search:
.title-search {}
-or-
.search-results .page-title {}
.search-results .post-title {}
Author:
.title-author {}
-or-
.author .page-title {}
.author .post-title {}
Page With Posts:
.weaverx-page-pwp .page-title {}
.weaverx-page-pwp .post-title {}
Weaver Page Templates
Custom User Interface Messages
A request we often get is the ability to customize user interface messages such as "Reply", "Previous/Next Post", and others. Weaver Xtreme now provides the ability to do this using standard WordPress filters. This section will list all the available filters to modify User Interface messages.
Note that some values, such as the "Continue Reading" message already have a built-in option due to popular demand. These messages can be changed either with a filter, or using the option.
These filters can't be added directly by Weaver Xtreme, but are easily added using the new Weaver Xtreme <HEAD> Section Actions and Filters option provided by the Weaver Xtreme Plus plugin.
For example, to replace the built in Older/Newer Blog Navigation messages, add these filters to the Actions and Filters box:
/* Add filters to change the Older Blog Navigation
messages */
add_filter( 'weaverx_older_posts','wx_older_posts' );
function wx_older_posts( $older ) {
return 'Back!';
}
The original message, including wrapping HTML for many strings, will be passed in to the filter using the single parameter. You can return whatever string you want, including your own HTML wrapping and styling. You have total flexibility in what message comes out. You would define similar filters for any of the following defined Weaver Xtreme filters.
Filters labeled with ( %s ) mean that the subject of the title ( mostly archive page titles ) will be used in place of the %s. If you want the extra title info, then you need to include the %s in your filter replacement. Technically, the title uses sprintf to add the specific information to the main title. For example, the tag archive default title is "Tag Archives: %s". The tag name will be filled in to the %s position - "Tag Archives: Post Formats".
If you don't know PHP programming, join the crowd! But it isn't that hard to simply use the above example to create your own custom message text for the various elements described in the list below. For example, suppose you want to change the text on the "Post Comment" button for comments. It is a pretty easy 4 step process - you can repeat for any of the filters listed below changing to appropriate names.
- Copy the above example into the Actions and Filters box.
- Change the 'weaverx_older_posts' to 'weaverx_post_comment_form'.
- Change the 'wx_older_posts' to 'wx_post_comment_form'.
- Finally, change the 'Back!' to whatever you want.
User interface message filters supported
- 'weaverx_older_posts', 'weaverx_newer_posts' - replace the Older/Newer and Previous/Next Blog Navigation Style for navigating blog posts.
- 'weaverx_more_message' - the Continue Reading message ( already has built-in option )
- 'weaverx_tag_archives' - page title for tag archives ( %s )
- 'weaverx_404_title' - page title for 404 page
- 'weaverx_yearly_archives', 'weaverx_monthly_archives', 'weaverx_daily_archives' - archive page title ( %s )
- 'weaverx_author_archives' - Author Archive page title ( %s )
- 'weaverx_category_archives' - Category Archives page title ( %s )
- 'weaverx_search_results' - Search results page title ( %s )
- 'weaverx_comments_title' - Title of comments section
- 'weaverx_newer_comments', 'weaverx_older_comments' - Older/Newer comments links
- 'weaverx_leave_reply_blog' - Leave a reply ( blog page version )
- 'weaverx_reply_1' - Original: ''<b>1</b> Reply' ( blog page version )
- 'weaverx_reply_many' - Original '<b>%</b> Replies' ( % replaced by number of replies ) ( blog page version )
- 'weaverx_leave_reply_form' - Leave a Reply message on comment form
- 'weaverx_cancel_reply_form' - Cancel Reply message on comment form
- 'weaverx_post_comment_form' - Post Comment button on comment form
- 'weaverx_site_title' - The site title
- 'weaverx_tagline' - Site tagline
The strings associated with the Post top and bottom Meta information lines are not suitable for this type of filtering due to some technical limitations. The Weaver Xtreme Plus plugin provides the Custom Post Info Lines option to create custom wording and layout for these lines.
Weaver HTML <div> Hierarchy
The Weaver theme generates content that is wrapped in HTML <div>'s with a set of conventional names. A typical site page will have the following hierarchy. Knowing this can help you make additional custom modifications. ( Another useful thing to do is to use the "View Document Source" option of your web browser to see the actual HTML generated by WordPress for your site content. ) This example is a standard page with a Right Sidebar layout. The locations of the sidebar areas will differ for different layouts. Moving the menu by options will change where it is located. ( Important note: the names and order of these <div>'s have changed significantly since Weaver II! )
body #inject_prewrapper #wrapper - wraps whole site #header - wraps everything in the header #inject_header - right after #header start .menu-secondary - secondary menu ( top ) ( .menu-secondary.wvrx-menu-wrap ) #header-widget-area - the header widget area #branding - the header area .title-tagline{-over} - wraps #site-title and #site-tagline #site-title span - site title #header-search - the search button #site-tagline - the site tagline #nav-header-mini - header mini menu #header-image - the header image #header-html - the header HTML area .menu-primary - primary menu ( bottom ) ( .menu-primary.wvrx-menu-wrap ) #container - wraps infobar, content, sidebars #infobar - info bar, if after menu bar #primary-widget-area - the primary widget area ( if stacked layout ) #content - wraps page or post content #?-top-widget-area - the various top widget areas #nav-above - Previous/Next for blog pages <article> - page or post content #nav-below - Previous/Next for blog pages #?-bottom-widget-area - various bottom widget areas #primary-widget-area - the primary widget area ( if non-stacked layout ) #secondary-widget-area - the secondary widget area ( always after content ) #inject_prefooter #colophon - the footer area #footer-widget-area - wraps footer widget areas #footer-html - the footer HTML area #site-ig-wrap - wraps footer bottom line #site-info - copyright #site-generator - powered by #inject_postfooter - last thing, outside #wrapper
Different kinds of Pages - HTML
<!-- **** Example Page HTML **** --> <body class="page page-id-146 page-template-default singular weaverx-page-page weaverx-sb-right"> ... <div id="content" role="main" class="layout-styles"> <article id="post-146" class="post-146 page type-page content-page"> <header class="page-header"> <h1 class="page-title ">Lorem Ipsum</h1> </header><!-- .page-header --> <div class="entry-content"> <p>Lorem ipsum dolor sit amet.</p> </div><!-- .entry-content --> </article><!-- #post-146 --> </div><!-- /#content --> ... </body> <!-- **** example default Blog Page ( as Home page ) **** --> <body class="home blog weaverx-page-blog weaverx-sb-right"> ... <div id="content" role="main" class="layout-styles"> <nav id="nav-above"> <div class="nav-previous"><a href="http://example.com/page/2/" ><span class="meta-nav">←</span> Older posts</a></div> <div class="nav-next"></div> </nav><div style="clear:both"></div><!-- #nav-above --> <article id="post-1241" class="post-1241 post type-post format-standard category-uncategorized tag-template content-default post-area post-odd post-order-1 "><!-- POST: standard --> <header class="entry-header"> <h2 class="post-title "><a href="http://example.com/post-slug/" title="Permalink to Post Slug" rel="bookmark">Post Slug</a></h2> <div class="entry-meta "> <span class="meta-info-wrap"> <span class="sep posted-on">Posted on </span><a href="http://example.com/post-slug/" title="7:07 am" rel="bookmark"> <time class="entry-date" datetime="2012-01-07T07:07:21+00:00">January 7, 2012</time></a> <span class="by-author"> <span class="sep"> by </span> <span class="author vcard"> <a class="url fn n" href="http://example.com/author/themedemos/" title="View all posts by themedemos" rel="author">themedemos</a></span></span> </span><!-- .entry-meta-icons --> </div><!-- /entry-meta --> </header><!-- .entry-header --> <div class="entry-summary"> <!-- EXCERPT, uses entry-content for full post content --> <p>Lorem ipsum dolor sit amet. <a class="more-link" href="http://example.com/post-slug/"> <span class="more-msg">Continue reading →</span></a></p> </div><!-- .entry-summary --> <footer class="entry-utility"><!-- bottom meta --> <div class="meta-info-wrap"> <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> <a href="http://example.com/category/uncategorized/" rel="category tag">Uncategorized</a></span> <span class="sep"> | </span><span class="tag-links"> <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> <a href="http://example.com/tag/template/" rel="tag">template</a></span> </div><!-- .entry-meta-icons --> </footer><!-- #entry-utility --> </div> </article><!-- /#post-1241 --> ... more posts ... <nav id="nav-below"> <h3 class="assistive-text">Post navigation</h3> <div class="nav-previous"><a href="http://example.com/page/2/" ><span class="meta-nav">←</span> Older posts</a></div> <div class="nav-next"></div> </nav><!-- #nav-below --> </div><!-- /#content --> ... </body> <!-- **** Example Single Page View **** --> <body class="single single-post postid-1241 single-format-standard singular weaverx-page-single weaverx-sb-right"> ... <div id="content" role="main" class="l-content-rsb m-full s-full "> ... .nav-previous, .nav-next links ... <article id="post-1241" class="post-1241 post type-post format-standard category-uncategorized tag-template content-single post-content post-area "> <header class="page-header"> <h1 class="page-title title-single ">Post Slug</h1> <div class="entry-meta "> ... see blog example for .entry-meta content </div><!-- /entry-meta --> </header><!-- .page-header --> <div class="entry-content"> ... see blog post example for .entry-content, .entry-utility ... </body> <!-- **** Example Single Page View **** --> <body class="attachment page page-id-1711 page-child parent-pageid-1133 page-template-default singular weaverx-page-image weaverx-sb-right"> ... remaining similar to other pages ... <!-- **** Example Archive-like Views **** --> <body class="archive date weaverx-page-archive weaverx-sb-right"> <!-- Date Based Archives --> <div id="content" role="main" class="layout-styling"> <header class="page-header"> <h1 class="page-title archive-title title-archive"><span><span class="title-archive-label"> Monthly Archives: </span><span class="archive-info">September 2014</span></span></h1> </header> ... posts - same as blog ... </div> </body> <body class="archive tag tag-content tag-79 weaverx-page-tag weaverx-sb-right"> <!-- Tag archives --> ... <header class="page-header"> <h1 class="page-title archive-title title-tag"><span><span class="title-tag-label"> Tag Archives: </span><span class="archive-info">content</span></span></h1> </header> ... <body class="archive category category-markup category-29 weaverx-page-category weaverx-sb-right"> ... <header class="page-header"> <h1 class="page-title archive-title title-category"><span><span class="category-title-label"> Category Archives: </span><span class="archive-info">Markup</span></span></h1> <div class="category-archive-meta"><p>Posts in this category test markup tags and styles.</p> </div> <!-- shown if tag/category description provided --> </header> ... <body class="search search-results weaverx-page-search weaverx-sb-right"> <!-- Search --> ... <header class="page-header"> <h1 class="page-title archive-title title-search"><span><span class="title-search-label"> Search Results for: </span><span class="archive-info">"content"</span></span></h1> </header> ... <body class="search search-no-results weaverx-page-search weaverx-sb-right"> <!-- failed search --> ...
Weaver Xtreme Class Reference
This section contains a comprehensive reference to the different HTML areas used by Weaver Xtreme, and the classes used to style those areas.
body
The classes added to the body tag, both by WordPress and by Weaver Xtreme. The list of classes added by WP is not necessarily comprehensive - WP will add more specific classes in various views.
- .home - if home page
- .page - if a regular page
- .page-id-### - ### is WP's page id
- .page-child - if this is a child page
- .page-parent - if this is a parent page
- .parent-page-id-### - id of parent page
- .page-template-xxxx - xxxx is the page template
- .blog - if blog
- .single - if single view
- .single-post - if single post page
- .archive - if an archive-like view of posts
- .tag - if tag view
- .category - if category view
- .date - if date view
- .search - if a search view
- .logged-in / .not-logged-in - if user logged in or not
- .single-author - if site has only one author
- .singular - if the page is a singular type page
- .custom-body-class - a class name specified on the per-page options
- .weaverx-theme-body - this page generated by weaver x
- .weaverx-page-xxxx - xxxx is a specific page type. Values of xxxx
can be:
- 404
- archive
- author
- category
- image
- page
- page-blank
- sitemap
- search
- single
- tag
- woocommerce
- .weaverx-sb-xxxx - sidebar layout. Values of xxxx can be:
- right
- right-top
- left
- left-top
- split
- split-top
- one-column
#wrapper - wraps entire site
The area wraps the entire site, and provides the global width, font, and colors.
#header
- Site Title
-
- #site-title
- Site Title with link
- #site-title a
- Site Tagline
- #site-tagline
- Header Image
- #header-image img
- Header Title, Tagline, Search, Header, Mini Menu
- #branding
- Header Search
- #header-search
- Header Mini-Nav
- #nav-header-mini .menu
- Header HTML Area
- #header-html
#container
This area wraps the #content and the primary and secondary sidebars.
#colophon
This wraps footer content.
Other Classes
#comment-title.no-comments-made - .no-comments-made is added to the #comments-title <div> if no comments have been made yet.
Filters Used by Weaver Xtreme Engine
Weaver Xtreme processes some content through filters. Short descriptions of the filters used by Weaver Xtreme follow. It will likely be most instructive to look at the actual source code to better understand some of these filters.
weaverx_404_title
apply_filters( 'weaverx_404_title', wp_kses_post( 'Sorry, no such page.','weaver-xtreme' ) )
- explain
weaverx_options
apply_filters( 'weaverx_options','weaverx_settings_backup' )
- This allows a child theme to load an alternate set of settings from the WP options db. The second parameter is the name of the WP option and will be used as the value of get_option( ), etc. The valid values can be: weaverx_settings_backup or weaverx_options.
weaverx_daily_archives
apply_filters( 'weaverx_daily_archives', wp_kses_post( 'Daily Archives: %s','weaver-xtreme' ) );
- Change the message for Daily Archives
weaverx_monthly_archives
apply_filters( 'weaverx_monthly_archives', wp_kses_post( 'Monthly Archives: %s','weaver-xtreme' ) );
- Change message for Monthly Archives
weaverx_yearly_archives
apply_filters( 'weaverx_yearly_archives', wp_kses( 'Yearly Archives: %s','weaver-xtreme' ) )
- Change message for Yearly Archives
taxonomy_archive_meta
apply_filters( 'taxonomy_archive_meta', '<div class="tax-archive-meta">' . $term_description . '</div>' )
- Used to replace a taxonomy archive page description as returned by WP function term_description( ).
weaverx_author_archives
apply_filters( 'weaverx_author_archives', wp_kses( 'Author Archives: %s','weaver-xtreme' ) )
- Change message for Author Archives
weaverx_category_archives
apply_filters( 'weaverx_category_archives', wp_kses( 'Category Archives: %s','weaver-xtreme' ) )
- Change the message for Category Archives
category_archive_meta
apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' )
- Used to replace a category archive page description as returned by WP function category_description( ).
weaverx_comments_title
echo apply_filters( 'weaverx_comments_title', wp_kses( 'Comments','weaver-xtreme' ) )
- Replace comments section title
weaverx_older_comments
apply_filters( 'weaverx_older_comments', wp_kses( '← Older Comments','weaver-xtreme' ) )
- Replace Older Comments label
weaverx_newer_comments
apply_filters( 'weaverx_newer_comments', wp_kses( 'Newer Comments →','weaver-xtreme' ) )
- Replace Newer Comments label
weaverx_reply/comment_form
- apply_filters( 'weaverx_leave_reply_form', wp_kses( 'Leave a Reply','weaver-xtreme' ) ),
apply_filters( 'weaverx_cancel_reply_form', wp_kses( 'Cancel Reply','weaver-xtreme' ) ),
apply_filters( 'weaverx_post_comment_form', wp_kses( 'Post Comment','weaver-xtreme' ) ) - Change messages for reply/comment form
weaverx_site_title
apply_filters( 'weaverx_site_title', get_bloginfo( 'name', 'display' ) )
- Replace the default site title
weaverx_tagline
apply_filters( 'weaverx_tagline', get_bloginfo( 'description' ) )
- Replace the default site tagline
weaverx_attachment_size
apply_filters( 'weaverx_attachment_size', 'large' )
- Change the default size for displaying attachment image
weaverx_older_posts, weaverx_newer_posts
apply_filters( 'weaverx_older_posts','
' . wp_kses( 'Previous Post','weaver-xtreme' ) ) apply_filters( 'weaverx_newer_posts', wp_kses( 'Next Post','weaver-xtreme' ) . ' ' );- Change message for older and newer posts navigation
weaverx_more_message
apply_filters( 'weaverx_more_message','Continue reading' )
- Replace the continue reading message for excerpts
edit_post_link
apply_filters( 'edit_post_link', 'Edit', $post->ID )
- Replace the "Edit" link button for $post->ID - need to include full <a> code and label.
weaverx_leave_reply_blog
apply_filters( 'weaverx_leave_reply_blog', wp_kses( 'Leave a reply','weaver-xtreme' ) );
apply_filters( 'weaverx_reply_1', wp_kses( '1 Reply','weaver-xtreme' ) );
apply_filters( 'weaverx_reply_many', wp_kses( '% Replies','weaver-xtreme' ) );- Replace messages for "Leaver a Reply" message for blog meta info lines
weaverx_posted_on, weaverx_posted_in
apply_filters( 'weaverx_posted_on',$po, $type )
apply_filters( 'weaverx_posted_in',$po, $type )
- Replace top and bottom post meta-info line ( $po ) for blog posts.
weaverx_author_bio_avatar_size
apply_filters( 'weaverx_author_bio_avatar_size', 75 )
- Change the size if the author avatar in the bio
weaverx_replace_widget_area
apply_filters( 'weaverx_replace_widget_area',$area_name )
- Replace a standard Weaver Xtreme widget area with a different one
weaverx_menu_name
apply_filters( 'weaverx_menu_name', $weaverx_menu )
- Replace the custom menu with a different one.
weaverx_menu_class
apply_filters( 'weaverx_menu_class', $class_values, $weaverx_menu )
- Modify menu class - add or delete classes to specific Weaver Xtreme menus
filtername
apply_filters
- explain
Advanced Filters
The following filters require knowledge of the item format ( usually an array ), and are usually used for Xtreme Plus to add new options. These can be added to a new option interface, but will require an understanding of the underlying code, and usually extra CSS style rules to support. Search the code for these filters to see what they do.
'weaverx_add_font_size', 'weaverx_add_font_family', 'weaverx_add_shadows',
Actions Called by Weave Xtreme Engine
Weaver Xtreme calls some actions. Many of these are used to interface with Weaver Xtreme Plus, but these could also be defined by a child theme. Some are specific to a child theme. Short descriptions of the actions by Weaver Xtreme follow. It will likely be most instructive to look at the actual source code to better understand some of these calls.
weaverx_child_siteoptions
do_action( 'weaverx_child_siteoptions' )
- A child theme can add new options to the botom of the Site Options tab. They can be processed via the 'weaverx_child_process_options' hook.
weaverx_child_process_options
do_action( 'weaverx_child_process_options' )
- Process options supported by a child theme - e.g., added via 'weaverx_child_siteoptions' or other.
weaverx_child_saverestore
do_action( 'weaverx_child_saverestore' );
- Allow additional save/restore in child
weaverx_child_update
do_action( 'weaverx_child_update' )
- Update option settings from child
weaverx_child_show_extrathemes
do_action( 'weaverx_child_show_extrathemes' );
- Allow child to display extra sub-themes.
weaverx_nav
do_action( 'weaverx_nav', $location )
- Display the top ( secondary ) and bottom ( primary ) menus
weaverx_post_header
do_action( 'weaverx_post_header' )
- Called after the </header> and bottom ( primary ) menu emitted.
weaverx_per_page
do_action( 'weaverx_per_page' )
- Called right before content is generated for each page. Use to emit per page options.
weaverx_per_post
do_action( 'weaverx_per_post', $cur_post_ID )
- Called before post content emitted. Used for per-post style.
weaverx_breadcrumbs
do_action( 'weaverx_breadcrumbs' )
- Called to emit breadcrumbs in infobar.
weaverx_paginate
do_action( 'weaverx_paginate' )
- Called to emit pagination navigation for blog pages ( infobar ).
do_action
do_action
- explain
Pluggable functions
A "pluggable" function is one that can easily be overridden in a child theme.
weaverx_setup( )
- Sets up theme defaults and registers support for various WordPress features.
weaverx_init_opts( $who='' )
- This sets either the current settings, or the default values.
weaverx_register_header_images( )
- Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
weaverx_admin_header_style( )
- Styles the header image displayed on the Appearance > Header admin panel.
weaverx_register_sidebar( $name, $id, $desc, $altclass='' )
- Register widgetized areas
weaverx_comment( $comment, $args, $depth )
- Template for comments and pingbacks.
weaverx_comments_popup_link( )
- generate comment bubble for posts
weaverx_content_nav( $nav_id )
- Display navigation to next/previous pages when applicable
weaverx_continue_reading_link( )
- Returns a "Continue Reading" link for excerpts
weaverx_edit_link( $echo = 'echo' )
- Generates the "Edit" page/post button
weaverx_entry_header( $format_title='', $do_excerpt = false )
- display entry header ( title ) for posts
weaverx_post_title( $before='', $after='' )
- display the post title
weaverx_link_pages( )
- Interface to wp_link_pages - pluggable
weaverx_not_found_search( )
- Output when search not found
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
function
- explain
Weaver Xtreme and this document are © 2010-2014, Bruce E. Wampler. Web Site - WeaverTheme.com