Show content by using tags

时间:2017-02-13 作者:Minttea

我想通过用户的标签显示一些内容,这是我想做的,但它不起作用:

$args = array($arg1,$arg2,$argn);

function show_tag_content($path){
  $post = get_page_by_path($path);
  $content = apply_filters(\'the_content\', $post->post_content);
  echo $content;
}

for ($i = 0; i<count($args);$i++){
show_tag_content(\'blog/tag/\' . $args[$i]);
}
在不使用博客和多个页面内容的情况下,尝试了使用硬字符串的功能,例如:

show_tag_content(\'login\');
show_tag_content(\'news\');
很好用,试过了:

show_tag_content(\'blog/tag/example\');
没什么

现在需要一些帮助

1 个回复
SO网友:Minttea

如果其他人在搜索此内容,我使用了带有语句标记的WP查询:

$args = array (myargs1,....,myargsn);
for ($i=0; $i<count($args);$i++){
$query = new WP_Query( array( \'tag\' => $args[$i] ) );
。。。依此类推,使用if have\\u posts()和while循环,您可以在wordpress上找到完整的语法。org,我使用for循环运行我的数组所做的唯一一件事

相关推荐

如何将Java脚本添加到Custom-Page.php模板?

如何将javascript添加到自定义页面。php模板?如何使从w3schools ajax教程获得的以下javascript在自定义页面上工作。php模板?任何帮助都将不胜感激。工作javascript包含在以下HTML中:<!DOCTYPE html> <html> <style> table,th,td { border : 1px solid black; border-collapse: collapse;&#x