Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('jnews_article_top_ads',function (){
- if (is_tax('jnews-series')){
- $post_id=get_the_ID();
- add_filter('post_link','force_link_to_archive');
- jnews_share_top_bar($post_id);
- remove_filter('post_link','force_link_to_archive');
- } else {
- error_log('this is not jnews series');
- }
- });
- function force_link_to_archive ($permalink) {
- return get_term_link(get_queried_object()->term_id);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement