Add a sentence above posts

I would like to add a box above my posts which state:

This article has links to products and services we love, which we may make commission from.

I’d like to also use an achortext link.

Is this possible? Currently using Header/Footer plugin but would like to remove.

Thanks.

Hi There,

Thanks for writing in! You can place the following code into your child theme’s functions.php file and edit according to your preference.

add_action('x_before_the_content_begin', function() {

	if (is_singular( 'post' )){
		echo "<p style='border:1px solid'> Your notice with <a href='http://www.google.com'>link</a> </p>";
	}
});

Hope that helps.

Would this be in Custom?

Hi There,

Sorry for the confusion. You need to setup a child theme first (https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57) and then you can add the code into your child theme’s functions.php file.

Thanks!

Hi again,

Add the above code in your Child Theme’s functions.php if you haven’t setup the child theme yet then I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.. After setting up the child theme you can navigate to Dashboard > Appearance > Editor and select Theme Functions (functions.php) and paste the above code at the end of the file.

Hope this helps!