WordPress 为主题定义自己的变量
我非常熟悉 WordPress 模板标签和新主题的工作。我想制作一堆变量,我将在我的主题中经常使用它们。很少有非常简单的模板标签,也很少有我自己的 HTML 结构可以在其他模板文件中重用。
例如,我想为 the_ttle()
或 the_permalink
创建变量,例如 $title = the_title();
或 $perma = the_permalink ();
因此,每当我在模板文件中添加 $title
或 $perma
时,它都会回显标题或永久链接。
对于 html 结构,例如我正在定义最近的后循环。
$recentloop = <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
get_thumbnail();
the_title();
get_post_meta(); etc.....
<?php endwhile; else: ?>
<?php endif; ?>
像上面这样的东西我不确定是否有什么问题:(
所以为了让它发生在我应该定义这些变量的地方,这样我就可以将它用于每个模板文件。
我读了这个主题 http://wordpress.org/support/topic/passing-php-variable- Between-template-files#post-1506298 但不知道如何以及在哪里放置 global $变量
我将非常感谢您的帮助。
I am quite familiar with wordpress template tag and working on new theme. I want to make bunch of variables which I will use quite often in my theme. Few are very simple template tag and few my own HTML structure to reuse in other template files.
Fore e.g I want to make variable for the_ttle()
or the_permalink
like $title = the_title();
or $perma = the_permalink();
so whenever I will add $title
or $perma
in template file it will echo the title or permalink.
and for html structure e.g I am defining recent post loop.
$recentloop = <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
get_thumbnail();
the_title();
get_post_meta(); etc.....
<?php endwhile; else: ?>
<?php endif; ?>
Something like above I am not sure if there is anything wrong :(
So to make it happen where I should define these variables so I can use it for every template files.
I read this topic http://wordpress.org/support/topic/passing-php-variable-between-template-files#post-1506298 but no idea how and where to place global $variable
I will really appreciate your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您是否仍然遇到此类问题。
正如标题&永久链接将在每个后循环中更新,您不应该将其设置为随处可用的变量。但如果您坚持这样做,您可以将变量放在
functions.php
中。Not sure if you are still having such problems.
As the title & permalink will update in every post loop, you shouldn't make it a variable that is available everywhere. But if you insist to do so, you can put the variable in
functions.php
.