Debugger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Function to hide specific posts from guests?Sure – this will do the trick – but im looking for complex solution, i don’t want to manually edit every post
lets say for example:if(in_rray(get_the_ID(),$hidden) && !is_user_logged_in()) { //do not display }
Forum: Fixing WordPress
In reply to: Set googlebot as subscriberOk, thanks!
Forum: Fixing WordPress
In reply to: Set googlebot as subscriberim running also invision power board community and in the admin menu i can set whatever i like privileges for the googlebot.
https://community.invisionpower.com/resources/documentation/index.html/_/documentation/administrator-control-panel/system-tab/tools-settings-user-agent-management-r293
Search Engine HandlingForum: Plugins
In reply to: [WordPress Social Login] Allow regisrationThe plug-in is working no matter wordpress registrations are on or off.
Forum: Fixing WordPress
In reply to: "in_category()" function helpFOUND IT!
<?php /** * Tests if any of a post's assigned categories are descendants of target categories * * @param int|array $cats The target categories. Integer ID or array of integer IDs * @param int|object $_post The post. Omit to test the current post in the Loop or main query * @return bool True if at least 1 of the post's categories is a descendant of any of the target categories * @see get_term_by() You can get a category by name or slug, then pass ID to this function * @uses get_term_children() Passes $cats * @uses in_category() Passes $_post (can be empty) * @version 2.7 * @link https://codex.www.ads-software.com/Function_Reference/in_category#Testing_if_a_post_is_in_a_descendant_category */ if ( ! function_exists( 'post_is_in_descendant_category' ) ) { function post_is_in_descendant_category( $cats, $_post = null ) { foreach ( (array) $cats as $cat ) { // get_term_children() accepts integer ID only $descendants = get_term_children( (int) $cat, 'category' ); if ( $descendants && in_category( $descendants, $_post ) ) return true; } return false; } } ?>
The above code goes into the function file of the template.
and bellow is the solution:
<?php if ( in_category( 'maincat' ) || post_is_in_descendant_category( 1 ) ) { echo "<img src='IMG URL'>";}?>
Thanks esmi!
Forum: Fixing WordPress
In reply to: "in_category()" function helpyes – im using it nut it is not working in this case:
CATEGORY ID1 -SUB-CATEGORY ID2 --POST <?php if ( in_category( '1' ) {echo "<img src='ICON URL'w>";} ) ?>
Forum: Fixing WordPress
In reply to: "in_category()" function helpHi, yes i previously tried with is_category() function but with no success. I just tried again and it is not working.
Any ideas?Forum: Fixing WordPress
In reply to: Category Post Count not displayedThanks so much!
That worked just how i needed to ??
Thank You again!Forum: Plugins
In reply to: Plugin to Mark the NEW posts?anyone?