Merged in feature/MAW-846-sharethis (pull request #52)

Feature/MAW-846 sharethis

* MAW-846: ShareThis social button plugin

* MAW-846: ShareThis social buttons update

* Merged develop into feature/MAW-846-sharethis
This commit is contained in:
SRIRAM RAO TAKKALLAPELLY
2024-05-17 14:24:19 +00:00
parent 5dbb0b284e
commit 4783d97a46
44 changed files with 7815 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**
* Share Button Settings Template
*
* The template wrapper for the share buttons settings page.
*
* @package ShareThisShareButtons
*/
?>
<hr class="wp-header-end" style="display:none;">
<div class="wrap sharethis-wrap">
<?php echo wp_kses_post( $description ); ?>
<div class="tabs-wrap">
<?php require $this->plugin->dir_path . '/templates/share-buttons/tabs.php'; ?>
</div>
<form action="options.php" method="post" id="sharethissharebuttonsform" name="sharethissharebuttonsform">
<?php
settings_fields( $this->menu_slug . '-share-buttons' );
do_settings_sections( $this->menu_slug . '-share-buttons' );
submit_button( esc_html__( 'Update', 'sharethis-share-buttons' ) );
?>
</form>
</div>