| Server IP : 185.68.16.147 / Your IP : 216.73.216.209 Web Server : Apache System : Linux web789.default-host.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : jt292766 ( 1182) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/jt292766/konstruktbud.com.ua/www/wp-content/plugins/grand-media/inc/ |
Upload File : |
<?php
/**
* PHP Class for WordPress SEO plugin
*/
defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
class gmediaSitemaps {
public $images = array();
/**
* gmediaSitemaps::__construct()
*/
public function __construct() {
add_filter( 'wpseo_sitemap_urlimages', array( &$this, 'add_wpseo_xml_sitemap_images' ), 10, 2 );
add_filter( 'the_content_feed', 'do_shortcode' );
}
/**
* Filter support for WordPress SEO by Yoast 0.4.0 or higher ( http://wordpress.org/extend/plugins/wordpress-seo/ )
*
* @param array $images
* @param int $post_id
*
* @return array $image list of all founded images
*/
public function add_wpseo_xml_sitemap_images( $images, $post_id ) {
global $gmGallery, $gmCore, $gmDB;
$this->images = $images;
// first get the content of the post/page.
$p = get_post( $post_id );
$content = $p->post_content;
// Don't process the images in the normal way.
remove_all_shortcodes();
add_shortcode( 'gmedia', 'gmedia_shortcode' );
add_shortcode( 'gm', 'gmedia_term_shortcode' );
// Search now for shortcodes.
do_shortcode( $content );
if ( count( $gmGallery->shortcode ) ) {
foreach ( $gmGallery->shortcode as $gmedia_shortcode ) {
$query = array_merge( $gmedia_shortcode['query'], array( 'status' => 'publish', 'mime_type' => 'image' ) );
$gmedias = $gmDB->get_gmedias( $query );
foreach ( $gmedias as $item ) {
$newimage = array();
$newimage['src'] = $gmCore->gm_get_media_image( $item, 'web' );
if ( ! empty( $item->title ) ) {
$newimage['title'] = wp_strip_all_tags( $item->title );
}
if ( ! empty( $item->description ) ) {
$newimage['alt'] = wp_strip_all_tags( $item->description );
}
$this->images[] = $newimage;
}
}
}
return $this->images;
}
}
$gmediaSitemaps = new gmediaSitemaps();