سلام خدمت تمام دوست عزیز یک پلاگین بدونه نیاز به شورت کد میدونم که تمام دوستاان به این مبحث آشنا هستند بازم گفتم که این کد خدمت تمام دوستان قرار بدم بازم اگه تکته بهتری بود حتما تمام دوستان مشارکت کنند ممنونم از استاد عزیز صالحی
/*
Plugin Name: scroll to top
Plugin URI: http://7learn-wp.local/
Description: replywp scroll to top plugin
Author: yasin jan
Author URI: http://7learn-wp.local/
Version: 1.0.0
Licence : GPLv2 or Later
*/
defined('ABSPATH') || exit;
define('REPLYWP_PLUGIN_DIR',plugin_dir_path(__FILE__));
define('REPLYWP_PLUGIN_URL',plugin_dir_url(__FILE__));
function replywp_plugin_register_assets()
{
wp_register_style('replywp-style',REPLYWP_PLUGIN_URL.'/assets/css/style.css');
wp_enqueue_style('replywp-style');
wp_register_style('replywp-font','//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.cs');
wp_enqueue_style('replywp-font');
// js
wp_register_script('replywp-main-js',REPLYWP_PLUGIN_URL.'/assets/js/main.js',['jquery'],'1.0.0',true);
wp_enqueue_script('replywp-main-js');
}
add_action('wp_enqueue_scripts','replywp_plugin_register_assets');
function replywp_scroll_top_btn_footer()
{
echo' ';
}
add_action('wp_footer','replywp_scroll_top_btn_footer');
دکمه
کدهای استایل
.go-top {
position: fixed;
bottom: 2em;
right: 2em;
text-decoration: none;
color: white;
background-color: rgba(0, 0, 0, 0.3);
font-size: 12px;
padding: 1em;
display: none;
z-index: 9999;
}
.go-top:hover {
background-color: rgba(0, 0, 0, 0.6);
}
کدهای js
jQuery(document).ready(function($) {
// Show or hide the sticky footer button
$(window).scroll(function() {
if ($(this).scrollTop() > 200) {
$('.go-top').fadeIn(200);
} else {
$('.go-top').fadeOut(200);
}
});
// Animate the scroll to top
$('.go-top').click(function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 0}, 300);
})
});
امید وارم که مفید باشه موفق باشید