gpt4 book ai didi

php - 如果字符串存在,请检查 the_content

转载 作者:行者123 更新时间:2023-12-02 01:02:32 24 4
gpt4 key购买 nike

情况是这样的。

我已经使用 Magento-Wordpress 集成设置了一个站点。集成有效,因此我可以从 wordpress 调用任何我想要的 Magento 站点。

我想在产品页面上显示一篇来自 wordpress 的帖子,其中包含一个特定的词。在我看来,我必须在帖子的 the_content() 中搜索产品的标题,然后带上我需要的 post_meta。

问题是我无法让它工作。我试过这个:

<?php $name_of_product = $_helper->productAttribute($_product, $_product->getName(), 'name') ?>
<?php echo $name_of_product ; ?>
<?php $args = array( 'post_type' => 'avada_portfolio', 'posts_per_page' => 103 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();

<?php
$pos = strpos( get_the_content(), "[Dominos]" );
var_dump($pos);
if ( ! (FALSE == $pos) ) {
the_content();
the_title();
}
else{echo ("NOTHING HERE");}
echo '</div>';
endwhile;
?>

但是没用。有什么建议吗?

最佳答案

根据您的 var_dump() 输出,您应该能够简单地使用:

if ( strpos( get_the_content(), '13801580' ) !== false) {
the_content();
the_title();
}

关于php - 如果字符串存在,请检查 the_content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26845415/

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