Inventory_Presser_Shortcode_Hours_Today::append_shortcode( string $content )
append_shortcode
On This Page
Description Description
Filter callback that appends the shortcode to the end of a string of content.
Parameters Parameters
- $content
-
(string) (Required)
Return Return
(string) The provided $content with the shortcode appended to the end
Source Source
File: includes/shortcode/class-shortcode-hours-today.php
function append_shortcode( $content ) { return trim( $content . ' <p>[' . self::SHORTCODE_TAG . ']</p>' ); }
Expand full source codeCollapse full source codeView on Github