wordpress自定义php函数,关于调用变量的简单问题

发布于 2024-11-08 12:11:37 字数 449 浏览 0 评论 0原文

简单的问题,但找不到答案。 当在 WP 中的任何地方调用函数“enkelpost”时,传递的值($one_p)将成为显示的帖子 ID。但如何将其放入函数本身。这是在functions.php中:

<?php
function enkelpost($one_p) 
{   

    query_posts('p= $one_p '); //how to make line this work?
    while (have_posts()) : the_post(); 
    global $more; $more = FALSE; 
    the_content('Read more...');
    endwhile;
}
?> 

假设我们想要id为150的单个帖子:

<?php enkelpost('150') ?>

Simple question, but couldn't find the answer.
When the function 'enkelpost'is called anywhere in WP the passed value($one_p) is gonne be the post ID displayed. But how to put this in the function itself. This is in the functions.php:

<?php
function enkelpost($one_p) 
{   

    query_posts('p= $one_p '); //how to make line this work?
    while (have_posts()) : the_post(); 
    global $more; $more = FALSE; 
    the_content('Read more...');
    endwhile;
}
?> 

Lets say we want the singe post with id 150:

<?php enkelpost('150') ?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

貪欢 2024-11-15 12:11:37

变量用单引号括起来时不会被解析,请将它们放在双引号中。

 query_posts("p= $one_p");

或者

根本不要对变量使用引号

query_posts("p=".$one_p);

Variables are not parsed when they are enclosed with single quote, put them in double quotes.

 query_posts("p= $one_p");

OR

Do not use quotes for variables at all

query_posts("p=".$one_p);
梅倚清风 2024-11-15 12:11:37

好吧,我认为这会是更简单的方法!

<?php if (function_exists('enkelpost')): ?>

Well I think this will be easier way!

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