본문 바로가기
OldStory/Home Linux

WordPress Facebook 관련 설정

by Alnilam 2012. 1. 5.

Wordpress의 글을 Facebook에 포스팅 하는 경우

wordpress 테마에 따라 사진이 facebook 페이지에 표시가 안되는 경우가 있다.

이 때는 header.php 파일의 wp_header() 함수 다음에 다음을 추가 해 준다.

[html]

<link rel="image_src" href="<?php
$thumbnail_id = get_the_post_thumbnail( $post->ID );
preg_match( '/src="(.*)" class/', $thumbnail_id, $link );
echo $link[1];
?>

[/html]

 

From : http://stackoverflow.com/questions/5426402/image-from-wordpress-wont-appear-on-facebook-wall

'OldStory > Home Linux' 카테고리의 다른 글

linux 에서 vfat mount  (0) 2012.01.06
Comparison of photo gallery software  (0) 2012.01.05
Facebook Like 버튼 추가 방법  (0) 2011.09.22
google plus one  (0) 2011.09.21
Deleted Forum "General Discussion"  (0) 2011.09.01