| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | function jetpack_inline_pdf_embed_handler( $matches, $attr, $url ) { |
||
| 21 | /** This action is documented in modules/widgets/social-media-icons.php */ |
||
| 22 | do_action( 'jetpack_bump_stats_extras', 'embeds', 'inline-pdf' ); |
||
| 23 | |||
| 24 | return sprintf( |
||
| 25 | '<object data="%1$s" type="application/pdf" width="100%%" height="800"> |
||
| 26 | <p><a href="%1$s">%1$s</a></p> |
||
| 27 | </object>', |
||
| 28 | esc_attr( $url ) |
||
| 29 | ); |
||
| 30 | } |
||
| 31 |