• Resolved aless81

    (@aless81)


    I would like to have a static paragraph at the top of my blog page. It would be to explain what the posts are about. How can I do it?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    That doesn’t look to be the blog page, but a normal page. You should be able to just edit the page, and add content on its top, in the normal editor.
    Let me know if that’s what you mean.

    Regards,
    Rodica

    Thread Starter aless81

    (@aless81)

    Hi, since I couldn’t find a better way to do it, I turned it around: I now have a blog page which doesn’t appear in the menu https://www.re-des.org/blog/ Then I have a page which appears in the menu https://www.re-des.org/cursos-eventos/

    There I put a description of the page and I added a Posts block where the latest blog posts will appear.

    I would just like to have that description at the top of the Blog page and have that page in the menu.

    I don’t know how to do it.

    Hi,
    You can try adding this in the functions.php file of a child theme, created with this doc https://docs.themeisle.com/article/985-how-to-create-a-child-theme-for-neve

    function neve_child_add_blog_description() {
    	echo 'The text that you need';
    }
    add_action( 'neve_before_posts_loop', 'neve_child_add_blog_description' );

    Regards,
    Rodica

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add a static paragraph to Post page’ is closed to new replies.