我刚刚设置了Magnific Popup,但不幸的是,我不知道如何在我为AJAX弹出创建的HTML文件中使用qTranslate的语言标记。
或者我应该在弹出窗口中嵌入一个wordpress页面(其中qTranslate插件运行良好)吗?
下面的HTML文件和包含的语言标记可以在http://chinasonoma.com/?page_id=9当点击"什么是精酿啤酒?"时中文"在选择英语时应该是不可见的。
这是我的第一篇帖子,所以如果你需要任何进一步的信息,请告诉我。
<<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div id="custom-content" class="white-popup-block" style="max-width:600px; margin: 20px auto;">
<h3>What is Craft Beer?</h3>
<style>
#custom-content img {max-width: 100%;margin-bottom: 10px;}
</style>
<p>Craft Beer is a specialty product </p>
<p><!--:zh-->中文<!--:--></p>
<img src="http://chinasonoma.com/wp-content/uploads/2013/06/sampler.jpg"/>
</div>
</body>
</html>
我认为答案很简单。
两种可能性:
-
过滤器的正确使用:
<p><?php apply_filters('the_content','<!--:zh-- >中文<!--:-->'); ?> </p>
-
使用函数qtrans_getLanguage();
<p><?php if(qtrans_getLanguage()=="zh") { echo "中文"; } ?></p>
希望这能有所帮助。