태그: 

1 글 보임 - 1 에서 1 까지 (총 1 중에서)
  • 글쓴이
  • #4261
    mimoon12
    키 마스터

      페이스북 공유 디폴트 이미지 변경 또는 제거

      // Open Graph meta tags
      /*----
      function fb_home_image( $tags ) {
          if ( is_home() || is_front_page() ) {
              // Remove the default blank image added by Jetpack
              unset( $tags['og:image'] );
       
              $fb_home_img = 'YOUR IMAGE URL';
              $tags['og:image'] = esc_url( $fb_home_img );
          }
          return $tags;
      }
      add_filter( 'jetpack_open_graph_tags', 'fb_home_image' );
      -----*/
      
      /*-----
      function custom_jetpack_default_image() {
          return 'YOUR IMAGE URL';
      }
      add_filter( 'jetpack_open_graph_image_default', 'custom_jetpack_default_image' );
      ---*/
      
      /*---
      ---*/
      function jetpackme_desveloper_fb_home_image( $tags ) {
          if ( is_home() || is_front_page() ) {
              // Remove the default blank image added by Jetpack
              unset( $tags['og:image'] );
        
              $fb_home_img = 'YOUR IMAGE URL';
              $tags['og:image'] = esc_url( $fb_home_img );
          }
          return $tags;
      }
      add_filter( 'jetpack_open_graph_tags', 'jetpackme_desveloper_fb_home_image' );
    1 글 보임 - 1 에서 1 까지 (총 1 중에서)
    • 답변은 로그인 후 가능합니다.