gpt4 book ai didi

php - 移动 php the_title 的位置

转载 作者:行者123 更新时间:2023-11-28 16:42:59 25 4
gpt4 key购买 nike

我正在尝试使包含页面标题的内容页面区域为全宽,这样我就可以将图像放回那里,类似于:http://www.nielsen.com/us/en/newswire.html

我尝试将 page-title div 移动到 page.php 上的容器上方,但它总是回到容器内。

这是我想在我的网站上移动的示例:http://www.zachkeller.net/cp_site/?page_id=93

这是我的 page.php 代码:

<?php get_header(); ?>

<!-- If there is no gallery, just grab the featured image -->
<?php if ( has_post_thumbnail() ) { ?>
<a class="featured-image" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'okay' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_post_thumbnail( 'large-image' ); ?></a>
<?php } ?>

<div class="container-wrap">
<div class="container">
<div class="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="blog-post clearfix">
<div class="blog-inside">
<div class="page-title">
<h1><?php the_title(); ?></h1>
</div>

<?php the_content(); ?>
</div><!-- blog inside -->
</div><!-- blog post -->
<?php endwhile; ?>
<?php endif; ?>
</div><!-- content -->

<?php get_sidebar(); ?>
</div><!-- container -->
</div><!-- container wrap -->

<?php get_footer(); ?>

最佳答案

你需要使用 echo get_title();而不是 the_title。这样它就会输出到你想要的地方。 the_title 自动输出自己。 get_title 是您手动回显的值。

请务必检查您使用的是哪个页面模板。在 wordpress 中,一个很好的线索是检查 body 类,它通常包含“page-template-full-width-php”或类似的内容,告诉您要编辑哪个模板。

关于php - 移动 php the_title 的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18446551/

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