Advertisement
GochiSiyan

add share bar

Mar 19th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. add_action('jnews_article_top_ads',function (){
  2. if (is_tax('jnews-series')){
  3. $post_id=get_the_ID();
  4. add_filter('post_link','force_link_to_archive');
  5. jnews_share_top_bar($post_id);
  6. remove_filter('post_link','force_link_to_archive');
  7. } else {
  8. error_log('this is not jnews series');
  9. }
  10. });
  11.  
  12. function force_link_to_archive ($permalink) {
  13. return get_term_link(get_queried_object()->term_id);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement