Functions
wpv_onepage_body_class¶
« More »
wpv_is_post_type¶
« More »
wpv_register_theme_deactivation_hook¶
« More »
wpv_shortcode_lightbox¶
displays some content in a lightbox
« More »
wpv_post_siblings_join¶
« More »
wpv_post_siblings_where¶
« More »
theme_body_classes¶
« More »
wpv_has_woocommerce¶
Alias for function_exists('is_woocommerce')
« More »
woocommerce_upsell_display¶
Output product up sells.
« More »
wpv_woocommerce_rating¶
star rating used in the single product template
« More »
woocommerce_template_loop_rating¶
star rating for the shop loop, related product, etc.
« More »
woocommerce_template_loop_product_thumbnail¶
wrap the product thumbnails in div.product-thumbnail
« More »
wpv_woocommerce_catalog_excerpt¶
WooCommerce catalog/related products excerpt
« More »
wpv_woocommerce_share¶
Single product social sharing
« More »
wpv_woocommerce_body_class¶
« More »
wpv_post_meta¶
Wrapper around get_post_meta which takes special pages into account
« More »
wpv_default¶
helper function - returns second argument when the first is empty, otherwise returns the first
« More »
wpv_ajaxed_post_portfolio¶
« More »
wpv_get_optionb¶
Same as wpv_get_option, but converts '1' and '0' to booleans
« More »
wpvge¶
Same as wpv_get_option, but echoes the value instead of returning it
« More »
wpv_update_option¶
update_option() wrapper
« More »
wpv_delete_option¶
delete_option wrapper
« More »
wpv_sanitize_bool¶
Converts '1', '0', 'true' and 'false' to booleans, otherwise returns $value
« More »
wpv_use_font¶
marks a font as "used"
« More »
wpv_get_font_url¶
returns the external font url based on the font family
« More »
wpv_finalize_custom_css¶
Called after the CSS cache is generated
« More »
wpv_sanitize_accent¶
Map an accent name to its value
« More »
wpv_get_icon_list¶
Returns the list of Icomoon icons
« More »
wpv_get_theme_icon_list¶
Returns the list of theme icons
« More »
wpv_get_icon_list¶
Returns the list of Icomoon icons
« More »
wpv_get_theme_icon_list¶
Returns the list of theme icons
« More »
wpv_lessphp_icon¶
icon() function for LESSPHP
« More »
wxr_cdata¶
Wrap given string in XML CDATA tag.
« More »
wxr_site_url¶
Return the URL of the site
« More »
wxr_cat_name¶
Output a cat_name XML tag from a given category object
« More »
wxr_category_description¶
Output a category_description XML tag from a given category object
« More »
wxr_tag_name¶
Output a tag_name XML tag from a given tag object
« More »
wxr_tag_description¶
Output a tag_description XML tag from a given tag object
« More »
wxr_term_name¶
Output a term_name XML tag from a given term object
« More »
wxr_term_description¶
Output a term_description XML tag from a given term object
« More »
wxr_authors_list¶
Output list of authors with posts
« More »
wxr_post_taxonomy¶
Output list of taxonomy terms, in XML tag format, associated with a post
« More »
export_wp¶
Generates the WXR export file for download
« More »
wpv_register_required_plugins¶
Declare plugin dependencies
« More »
Classes, interfaces and traits
WPV_Editor_Parser¶
class WPV_Editor_Parser
« More »
WPV_Text_Divider¶
class WPV_Text_Divider
« More »
WPV_Expandable¶
Expandable services shortcode handler
« More »
WPV_Blog¶
class WPV_Blog
« More »
WPV_Sc_WooCommerce_Featured¶
class WPV_Blog
« More »
WPV_Blockquote¶
class WPV_Blockquote
« More »
WPV_Editor_Shortcode_Config¶
class WPV_Editor_Shortcode_Config
« More »
Simple class used to generate a test PHPDocumentor documentation.
« More »
wpv_subpages¶
list either subpages or siblings
« More »
wpv_posts¶
posts widget
« More »
wpv_advertisement¶
advertisement widget
« More »
WpvUpdateNotice¶
Suggest things to do after a theme update
« More »
WpvFontsHelper¶
class WpvFontsHelper
« More »
WpvShortcodesGenerator¶
class WpvShortcodesGenerator
« More »
WpvIconsHelper¶
class WpvIconsHelper
« More »
WpvConfigGenerator¶
class WpvConfigGenerator
« More »
WpvSkinManagement¶
class WpvSkinManagement
« More »
WpvFramework¶
This is the first loaded framework file
WpvFramework does the following ( in this order ):
- sets constants for the frequently used paths
- loads translations
- loads the plugins bundled with the theme
- loads some functions and helpers used in various places
- sets the custom post types
- loads the shortcode library for the framework
- if this is wp-admin, load admin files
This class also loads the custom widgets and sets what the theme supports ( + custom menus )
« More »
WpvMobileDetect¶
Mobile Detect Library
=====================
Motto: "Every business should have a mobile detection script to detect mobile readers"
WpvMobileDetect is a lightweight PHP class for detecting mobile devices (including tablets).
It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.
« More »
WpvLessc¶
The LESS compiler and parser.
Converting LESS to CSS is a three stage process. The incoming file is parsed
by lessc_parser into a syntax tree, then it is compiled into another tree
representing the CSS structure by lessc. The CSS tree is fed into a
formatter, like lessc_formatter which then outputs CSS as a string.
During the first compile, all values are reduced, which means that their
types are brought to the lowest form before being dump as strings. This
handles math equations, variable dereferences, and the like.
The parse function of lessc is the entry point.
In summary:
The lessc class creates an instance of the parser, feeds it LESS code,
then transforms the resulting tree to a CSS tree. This class also holds the
evaluation context, such as all available mixins and variables at any given
time.
The lessc_parser class is only concerned with parsing its input.
The lessc_formatter takes a CSS tree, and dumps it to a formatted string,
handling things like indentation.
« More »
WpvPostFormats¶
class WpvPostFormats
« More »
WpvShortcodeOverrides¶
class WpvShortcodeOverrides
« More »
WPV_WXR_Parser¶
WordPress Importer class for managing parsing of WXR files.
« More »
WPV_WXR_Parser_Regex¶
WXR Parser that uses regular expressions. Fallback for installs without an XML parser.
« More »