|  | @@ 576-578 (lines=3) @@ | 
                                                            
                                    | 573 |  | 	$enqueue = false; | 
                                                            
                                    | 574 |  | 	if ( is_singular() && in_array( get_post_type(), $global_options['show'] ) ) { | 
                                                            
                                    | 575 |  | 		$enqueue = true; | 
                                                            
                                    | 576 |  | 	} elseif ( in_array( 'index', $global_options['show'] ) && ( is_home() || is_front_page() || is_archive() || is_search() || in_array( get_post_type(), $global_options['show'] ) ) ) { | 
                                                            
                                    | 577 |  | 		$enqueue = true; | 
                                                            
                                    | 578 |  | 	} | 
                                                            
                                    | 579 |  |  | 
                                                            
                                    | 580 |  | 	/** | 
                                                            
                                    | 581 |  | 	 * Filter to decide when sharing scripts should be enqueued. | 
                                                                                
                                |  | @@ 764-766 (lines=3) @@ | 
                                                            
                                    | 761 |  | 	if ( ! is_feed() ) { | 
                                                            
                                    | 762 |  | 		if ( is_singular() && in_array( get_post_type(), $global['show'], true ) ) { | 
                                                            
                                    | 763 |  | 			$show = true; | 
                                                            
                                    | 764 |  | 		} elseif ( in_array( 'index', $global['show'], true ) && ( is_home() || is_front_page() || is_archive() || is_search() || in_array( get_post_type(), $global['show'], true ) ) ) { | 
                                                            
                                    | 765 |  | 			$show = true; | 
                                                            
                                    | 766 |  | 		} | 
                                                            
                                    | 767 |  | 	} | 
                                                            
                                    | 768 |  |  | 
                                                            
                                    | 769 |  | 	/** |