WordPress 为主题定义自己的变量

发布于 2024-12-29 14:21:02 字数 948 浏览 2 评论 0原文

我非常熟悉 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2025-01-05 14:21:02

不确定您是否仍然遇到此类问题。

正如标题&永久链接将在每个后循环中更新,您不应该将其设置为随处可用的变量。但如果您坚持这样做,您可以将变量放在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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文