remove post titles from index page

Post Reply
lurch
Jr. Bludit
Posts: 1
Joined: Thu Apr 10, 2025 4:11 pm

I want to setup a single page site so will only be having a single "post" how to do remove the post title/url link/shortcut so only the actual post content is displayed?

I'm using the Moran theme if that makes a difference.
User avatar
zacharielle
Ssr. Bludit
Posts: 13
Joined: Sat Jan 07, 2023 7:51 am
Has thanked: 11 times
Been thanked: 10 times

Hi lurch,

You can edit the theme to achieve this:
  • in php/home.php remove

    Code: Select all

    <!-- Page title -->
            <h2 class="post-title">
                <a class="" href="<?php echo $page->permalink(); ?>"><?php echo $page->title(); ?></a>
            </h2> 
  • and in php/page.php remove

    Code: Select all

     <!-- Page title -->
            <h1 class="post-title"><?php echo $page->title(); ?></h1>
Hope this helps.
Post Reply