DIR: /var/www/2of3/wp-content/plugins/ocean-extra/includes/menu-icons/includes/library/ |
Current File : /var/www/2of3/wp-content/plugins/ocean-extra/includes/menu-icons/includes/library/compat.php |
<?php /** * Misc. functions for backward-compatibility. */ if ( ! function_exists( 'wp_get_attachment_image_url' ) ) { /** * Get the URL of an image attachment. * */ function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) { $image = wp_get_attachment_image_src( $attachment_id, $size, $icon ); return isset( $image['0'] ) ? $image['0'] : false; } } |