File "tpl--inline-content.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/wordpress-popup/views/admin/sshare/display-options/tpl--inline-content.php
File size: 1.7 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Inline display type section.
*
* @package Hustle
* @since 4.0.0
*/
?>
<div class="sui-box-settings-row">
<div class="sui-box-settings-col-1">
<span class="sui-settings-label"><?php esc_html_e( 'Inline Content', 'hustle' ); ?></span>
<span class="sui-description"><?php esc_html_e( 'Add a social bar inline to your website’s posts and pages.', 'hustle' ); ?></span>
</div>
<div class="sui-box-settings-col-2">
<?php
// SETTINGS: Enable inline module.
$this->render(
'admin/sshare/display-options/tpl--position-settings',
array(
'label' => esc_html__( 'inline module', 'hustle' ),
/* translators: strong HTML-tag. */
'description' => sprintf( esc_html__( 'Add your social bar above the page content, below it, or at both locations on any page that uses the %1$s"the_content()"%2$s method (e.g. Posts, Pages, etc.) for displaying content.', 'hustle' ), '<strong>', '</strong>' ),
'prefix' => 'inline',
'settings' => $settings,
'offset_x' => false,
'offset_y' => false,
'alignment' => true,
'positions' => array(
'below' => array(
'label' => esc_html__( 'Below', 'hustle' ),
'image1x' => 'social-position/inline-below.png',
'image2x' => 'social-position/inline-below@2x.png',
),
'above' => array(
'label' => esc_html__( 'Above', 'hustle' ),
'image1x' => 'social-position/inline-above.png',
'image2x' => 'social-position/inline-above@2x.png',
),
'both' => array(
'label' => esc_html__( 'Both', 'hustle' ),
'image1x' => 'social-position/inline-both.png',
'image2x' => 'social-position/inline-both@2x.png',
),
),
)
);
?>
</div>
</div>