echo "<meta property='og:url' content='A' />\n";
echo "<meta property='og:type' content='B' />\n";
echo "<meta property='og:title' content='C' />\n";
echo "<meta property='og:description' content='D' />\n";
echo "<meta property='og:image' content='E' />\n";
$fusion_open_graph = array(
"property='url'" => $settings["siteurl"],
"property='type'" => "Haberler",
"property='title'" => $settings["sitename"],
"property='description'" => $settings['description'],
"property='image'" => $settings["sitebanner"]
);
function set_graph($name, $content=""){
global $fusion_open_graph;
$fusion_open_graph[$name] = $content;
}
if(!empty($fusion_open_graph)){
foreach($fusion_open_graph as $name => $content){
$output = preg_replace("#<meta property='og:$name' content='.*' />#i", "<meta property='og:".$name."' content='".$content."' />", $output, 1);
}
}
echo "<meta property='og:url' content='A' />\n";
echo "<meta property='og:type' content='B' />\n";
echo "<meta property='og:title' content='C' />\n";
echo "<meta property='og:description' content='D' />\n";
echo "<meta property='og:image' content='E' />\n";
// Open Graph property array
$fusion_open_graph = array(
"property='url'" => $settings["siteurl"],
"property='type'" => "News, Articles, Photogallery etc...",
"property='title'" => $settings["sitename"],
"property='description'" => $settings['description'],
"property='image'" => $settings["sitebanner"]
);
// This usage function
function set_graph($name, $content=""){
global $fusion_open_graph;
$fusion_open_graph[$name] = $content;
}
if(!empty($fusion_open_graph)){
foreach($fusion_open_graph as $name => $content){
$output = preg_replace("#<meta property='og:$name' content='.*' />#i", "<meta property='og:".$name."' content='".$content."' />", $output, 1);
}
}
set_graph("title",$data["news_subject"]);
set_graph("description",$data["news_news"]);
set_graph("type","News - ".$data["news_cat_name"]);
set_graph("url","http://xxx.com/news.php?readmore=".$data["news_id"]."");
set_graph("image",IMAGES_N_T.$data["news_image_t2"]);
Quote
Very interesting! I tried this on a v7.02.07 site but it does not work for me.
Also followed this guide, http://www.fusiontr.com/forum/viewthread.php?thread_id=6041&pid=44670#post_44670
@SGT-TURKEY
Do you offer English support on fusiontr.com?
- by Wanabo