元标记不从固定链接获取数据

时间:2015-11-04 作者:Justas

我有一页http://studyofjoy.com/categories/我想向标题部分添加自定义元标记,如下所示:

<meta property="og:title"              content="<?php echo "title:" . $get_title_raw; ?>" />
<meta property="og:image"              content="http://www.studyofjoy.com/wp-content/themes/studyofjoy/images/motivation/<?php echo $get_id; ?>.jpg" />
<meta property="og:image:width"        content="500" />
<meta property="og:image:height"       content="500" />
在哪里

$get_title_raw = $wp_query->query_vars[\'get_title\'];
功能。php文件如下所示:

function custom_rewrite_tag() {
add_rewrite_tag(\'%get_title%\', \'([^&]+)\');
add_rewrite_tag(\'%get_id%\', \'([^&]+)\');
}
add_action(\'init\', \'custom_rewrite_tag\', 10, 0);

function add_rewrite_rules($aRules) {
$aNewRules = array(\'categories/([^/]+)/([^/]+)/?$\' => \'index.php?pagename=categories&get_title=$matches[1]&get_id=$matches[2]\');
$aRules = $aNewRules + $aRules;
return $aRules;
}

// hook add_rewrite_rules function into rewrite_rules_array
add_filter(\'rewrite_rules_array\', \'add_rewrite_rules\');
问题是,当我将网站地址上传到facebook Scraper时,它不会加载任何信息。。。关于变量。。。我是说脸书刮痧$get_title_raw = $wp_query->query_vars[\'get_title\'];返回为空白或null。我们如何解决这个问题??

1 个回复
SO网友:Justas

是yaost seo插件,他总是在标题处创建元标记:)

相关推荐

Calculations in functions.php

我为自己创建了一个发票主题,并试图在自定义列中获取发票总额。我已经尝试调整模板页面中使用的代码,以便在函数中显示这一点。php文件,但它不工作。我的乘法操作数出现了一个操作数错误,我不知道为什么。这是我的代码(如有任何帮助,将不胜感激)。if( $column_name == \'invoice_total\' ) { $hours = 0; // This allows counting of each sub_field //* Set repeater va