Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created January 23, 2024 06:22
Show Gist options
  • Select an option

  • Save wbcomdev/b0b9958045da0611044cd3ec86ceac93 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/b0b9958045da0611044cd3ec86ceac93 to your computer and use it in GitHub Desktop.
Hide activities and show posting form only
/**
<?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