llms_price_raw( int $price, array $args = array() )
Get a simple string (no html) based on the output of llms_price
Parameters Parameters
- $price
-
(int) (Required) Price to display.
- $args
-
(array) (Optional) Array of arguments.
Default value: array()
Return Return
(string)
Source Source
File: includes/functions/llms.functions.currency.php
function llms_price_raw( $price, $args = array() ) { return html_entity_decode( strip_tags( llms_price( $price, $args ) ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |