mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
6 lines
190 B
Text
6 lines
190 B
Text
add_filter( 'aioseop_images_allowed_from_hosts', 'my_aioseop_images_allowed_from_hosts' );
|
|
|
|
function my_aioseop_images_allowed_from_hosts( $hosts ) {
|
|
$hosts[] = '*.wp.com';
|
|
return $hosts;
|
|
}
|