File Editor
Directories:
.. (Back)
Files:
form.php
style.css
widget.php
Create New File
Create
Edit File: widget.php
<?php /** * Jetpack_Flickr_Widget frontend widget output. * * @html-template Jetpack_Flickr_Widget::widget * @package automattic/jetpack */ // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable -- HTML template, let Phan handle it. ?> <!-- Start of Flickr Widget --> <div class="flickr-wrapper flickr-size-<?php echo esc_attr( $instance['flickr_image_size'] ); ?>"> <div class="flickr-images"> <?php echo $photos; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaping handled in Jetpack_Flickr_Widget class. ?> </div> <?php if ( isset( $flickr_home ) ) { ?> <a class="flickr-more" href="<?php echo esc_url( $flickr_home, array( 'http', 'https' ) ); ?>"> <?php esc_html_e( 'More Photos', 'jetpack' ); ?> </a> <?php } ?> </div> <!-- End of Flickr Widget -->
Save Changes
Rename File
Rename