need to hide a specific text in home page
-
in this site more post section we need to hide this certain text “Originally posted on the Bibles for America Blog” in home page but need to be visible in single post’
after adding necessary code in functions.php and css , the text still shows in home page along with few other texts : (Originally posted on the Bibles for America Blog) Did you know that besides offering free copies of the New Testament Recovery…Function.php code:
function hide_text_on_homepage($content) {
// Check if it’s the homepage
if (is_home() || is_front_page()) {
// Text to hide on the homepage
$text_to_hide = ‘Originally posted on the Bibles for America Blog’;// Replace the text with an empty string $content = str_replace($text_to_hide, '', $content); } return $content;
}
add_filter(‘the_content’, ‘hide_text_on_homepage’);
CSS code:
body.home .bfalink {
display: none !important;
}
html code:
<p class=”bfalink” style=”font-size:12px”><em>(Originally posted on the <a href=”https://blog.biblesforamerica.org” target=”_blank” rel=”noreferrer noopener”>Bibles for America Blog</a>)</em></p>The page I need help with: [log in to see the link]
- The topic ‘need to hide a specific text in home page’ is closed to new replies.