File Editor
Directories:
.. (Back)
css
images
img
js
Files:
archiveorg-book.php
archiveorg.php
archives.php
bandcamp.php
brightcove.php
cartodb.php
class.filter-embedded-html-objects.php
codepen.php
crowdsignal.php
dailymotion.php
descript.php
facebook.php
flatio.php
flickr.php
getty.php
gist.php
googleapps.php
googlemaps.php
googleplus.php
gravatar.php
houzz.php
inline-pdfs.php
instagram.php
kickstarter.php
mailchimp.php
medium.php
mixcloud.php
others.php
pinterest.php
presentations.php
quiz.php
recipe.php
scribd.php
sitemap.php
slideshare.php
slideshow.php
smartframe.php
soundcloud.php
spotify.php
ted.php
tweet.php
twitchtv.php
twitter-timeline.php
unavailable.php
untappd-menu.php
upcoming-events.php
ustream.php
videopress.php
vimeo.php
vine.php
vr.php
wordads.php
wufoo.php
youtube.php
Create New File
Create
Edit File: inline-pdfs.php
<?php /** * Embed support for Inline PDFs * * Takes a plain-text PDF URL (*.pdf), and attempts to embed it directly * in the post instead of leaving it as a bare link. * * @package automattic/jetpack */ wp_embed_register_handler( 'inline-pdfs', '#https?://[^<]*\.pdf$#i', 'jetpack_inline_pdf_embed_handler' ); /** * Callback to modify the output of embedded PDF files. * * @param array $matches Regex partial matches against the URL passed. * @param array $attr Attributes received in embed response. * @param array $url Requested URL to be embedded. */ function jetpack_inline_pdf_embed_handler( $matches, $attr, $url ) { /** This action is documented in modules/widgets/social-media-icons.php */ do_action( 'jetpack_bump_stats_extras', 'embeds', 'inline-pdf' ); $filename = basename( wp_parse_url( $url, PHP_URL_PATH ) ); $fallback_text = sprintf( /* translators: Placeholder is a file name, for example "file.pdf" */ esc_html__( 'Click to access %1$s', 'jetpack' ), $filename ); return sprintf( '<p><a href="%1$s" target="_blank" rel="noopener noreferrer nofollow">%2$s</a></p>', esc_url( $url ), $fallback_text ); }
Save Changes
Rename File
Rename