File manager - Edit - /home/aussies6/public_html/wp-content/plugins/siteorigin-panels/compat/yoast-sitemap.php
Back
<?php /** * Returns a list of all images added using Page Builder. * * @param $images an array of all detected images used in the current post. * @param $post_id the current post id. * * @return array */ function siteorigin_yoast_sitemap_images_compat( $images, $post_id ) { if ( get_post_meta( $post_id, 'panels_data', true ) && extension_loaded( 'xml' ) && class_exists( 'DOMDocument' ) ) { $content = SiteOrigin_Panels::renderer()->render( $post_id, false ); libxml_use_internal_errors( true ); $dom = new DOMDocument(); $dom->loadHTML( '<?xml encoding="UTF-8">' . $content ); libxml_clear_errors(); foreach ( $dom->getElementsByTagName( 'img' ) as $img ) { $src = $img->getAttribute( 'src' ); if ( ! empty( $src ) && $src == esc_url( $src ) ) { $images[] = array( 'src' => $src, ); } } } return $images; } add_filter( 'wpseo_sitemap_urlimages', 'siteorigin_yoast_sitemap_images_compat', 10, 2 );
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings