gpt4 book ai didi

php - 如何替换wordpress the_title中的文本?

转载 作者:搜寻专家 更新时间:2023-10-31 20:35:11 24 4
gpt4 key购买 nike

我想替换 wp title 中的一段文字,
实际上,有一个流行帖子的小部件。
我想替换这个小部件输出中的文本,所以我查看了小部件函数并找到了这段代码:

foreach($popular as $post) :
setup_postdata($post);
?>
<li>
<a href="<?php the_permalink(); ?>">
<?php if ( $show_thumb3 == 1 ) : ?>
<?php the_post_thumbnail('widgetthumb',array('title' => '')); ?>
<?php endif; ?>
<?php the_title(); ?>
</a>
blah blah blah...

我已经尝试更改此行 <?php the_title(); ?>到:

<?php
$wptitle = the_title();
$wptitle = str_replace('textbefore', 'textafter', $wptitle);
echo $wptitle;
?>

但它在现场没有任何作用,也没有任何影响!
如何替换小部件输出中标题中的文本?
如果有两个字符串要替换怎么可能呢?
我应该使用这样的东西吗?:

    <?php
$wptitle = the_title();
$wptitle = str_replace('textbefore', 'textafter', $wptitle) && str_replace('text2before', 'text2after', $wptitle);
echo $wptitle;
?>

最佳答案

<?php
$wptitle = the_title();
$wptitle = str_replace('textbefore', 'textafter', $wptitle);
echo $wptitle;
?>

替换为

<?php
$wptitle = get_the_title($post->id);
$wptitle = str_replace('textbefore', 'textafter', $wptitle);
echo $wptitle;
?>

关于php - 如何替换wordpress the_title中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37467934/

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