Advertisement
pentago

Untitled

Oct 19th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. /* Enforce HTTP Open Graph URLs in Yoast SEO */
  2. add_filter( 'wpseo_opengraph_url', 'my_opengraph_url' );
  3. function my_opengraph_url( $url ) {
  4. return str_replace( 'https://', 'http://', $url );
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement