gpt4 book ai didi

php - Joomla 文章页面 : code to check published or not

转载 作者:可可西里 更新时间:2023-11-01 08:37:15 25 4
gpt4 key购买 nike

我正在文章页面中查找 php 代码以检查该文章是否已发布。

我试过这个,但它是错误的。

if($listing['Listing']['published']==1){ }

谁能给我一些提示?非常感谢

PS: Joomla 1.7.3, JReviews 2.3(使用Joomla默认内容结构)

最佳答案

试试这个:

jimport('joomla.database.table');
$article_id = [place here the article Id];
$article =& JTable::getInstance("content");
$article->load($article_id);
echo $article->get("state");

您可以找到更多信息 here

关于php - Joomla 文章页面 : code to check published or not,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8777915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com