• Hi there,

    Curious if there is a way to add a title such as “Related Posts” or “Read These Next” above the list of related posts?

    On the page I’ve referenced, you can see two related post sections below the content. One is created with the block editor, the second with WPSP.

    I’d like to move “More Block Editor Goodness” inside the grey box if possible.

    Thanks kindly,

    Matt

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

Viewing 1 replies (of 1 total)
  • Plugin Support Elvin

    (@ejcabquina)

    Hi there,

    You can do that by hooking it in using a PHP filter.

    Example:

    add_action('wpsp_inside_wrapper',function($settings){
    	if(2449 === (int) $settings['list_id']){
    		echo '<h1>More Block Editor Goodness</h1>';
    	}
    },1,1);

    Make sure you change the 2449 to the ID of your WPSP list.

Viewing 1 replies (of 1 total)

The topic ‘Add a Title above Posts’ is closed to new replies.