WPIntell

Source evidence

Also Removes Breadcrumbs

Title Remover · support · 2018-08-07T04:04:00+00:00

complaintsentiment
highseverity
0.85relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 34 rows with source links

14.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
onewalrus unresolved
Wordpress all up to date using the Sahifa theme. When I remove titles, the plugin is also stripping the title name out of the breadcrumbs. This I do not want. Advice? The page I need help with: [ log in to see the link] If all you need to do is hide the title for all posts of a given post type , then you can this filter to your functions.php : function tt_hidetitle_class($classes) { if ( is_single() || is_singular( array( 'event', 'ebook', 'post', 'page' ) ) ): $classes[] = 'hidetitle'; return $classes; endif; return $classes; } add_filter('post_class', 'tt_hidetitle_class'); I use it for my custom post types (‘event’ and ‘ebook’). Just add or subtract post types as needed. You also need to add this CSS to your theme stylesheet: .hidetitle .entry-title { display:none; } This reply was modified 7 years, 5 months ago by criticaltinkerer . This reply was modified 7 years, 5 months ago by criticaltinkerer . This reply was modified 7 years, 5 months ago by criticaltinkerer .

Comments

1 shown
criticaltinkerer 2018-12-29T02:48:00+00:00

If all you need to do is hide the title for all posts of a given post type , then you can this filter to your functions.php : function tt_hidetitle_class($classes) { if ( is_single() || is_singular( array( 'event', 'ebook', 'post', 'page' ) ) ): $classes[] = 'hidetitle'; return $classes; endif; return $classes; } add_filter('post_class', 'tt_hidetitle_class'); I use it for my custom post types (‘event’ and ‘ebook’). Just add or subtract post types as needed. You also need to add this CSS to your theme stylesheet: .hidetitle .entry-title { display:none; } This reply was modified 7 years, 5 months ago by criticaltinkerer . This reply was modified 7 years, 5 months ago by criticaltinkerer . This reply was modified 7 years, 5 months ago by criticaltinkerer .