Created
January 23, 2024 06:22
-
-
Save wbcomdev/b0b9958045da0611044cd3ec86ceac93 to your computer and use it in GitHub Desktop.
Hide activities and show posting form only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| <?php | |
| * Wbcom shortcode activity | |
| * | |
| */ | |
| add_action('wp_head','wbcom_shortcode_activity_hide'); | |
| function wbcom_shortcode_activity_hide(){ | |
| global $post; | |
| if( has_shortcode( $post->post_content, 'activity-listing' ) ){ | |
| ?> | |
| <style> | |
| .activity ul, | |
| .activity .activity-list{ | |
| display:none; | |
| } | |
| </style> | |
| <?php | |
| } | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment