X7ROOT File Manager
Current Path:
/home/okeydcqc/public_html/wp-content/plugins/ocean-product-sharing/includes
home
/
okeydcqc
/
public_html
/
wp-content
/
plugins
/
ocean-product-sharing
/
includes
/
ðŸ“
..
📄
helpers.php
(769 B)
📄
options.php
(4.34 KB)
📄
update-message.php
(4.25 KB)
Editing: helpers.php
<?php /** * Helper functions. * * @package Ocean WordPress theme */ /** * Returns social sharing template part */ if ( ! function_exists( 'ops_social_share_sites' ) ) { function ops_social_share_sites() { // Default socials $socials = array( 'twitter', 'facebook', 'pinterest', 'email' ); // Get socials from Customizer $socials = get_theme_mod( 'ops_product_sharing_sites', $socials ); if (is_string($socials)) { $socials = json_decode($socials, true); } // Turn into array if string if ( $socials && ! is_array( $socials ) ) { $socials = explode( ',', $socials ); } // Apply filters for easy modification $socials = apply_filters( 'ops_product_sharing_sites_filter', $socials ); // Return socials return $socials; } }
Upload File
Create Folder