of_recognized_background_attachment
Get recognized background attachment.
Description
(array) of_recognized_background_attachment();
Returns (array)
Usage
if ( !function_exists( 'of_recognized_background_attachment' ) ) { require_once '/inc/includes/class-options-sanitize.php'; } // NOTICE! Understand what this does before running. $result = of_recognized_background_attachment();
Defined (1)
The function is defined in the following location(s).
- /inc/includes/class-options-sanitize.php
- function of_recognized_background_attachment() {
- $default = array(
- 'scroll' => __( 'Scroll Normally', 'skt-photo-world' ),
- 'fixed' => __( 'Fixed in Place', 'skt-photo-world')
- );
- return apply_filters( 'of_recognized_background_attachment', $default );
- }