How to add a back-to-top button on your WordPress website
Landing website pages have been all the rage for a while now and although many of them come with a great design they can also come with a caveat: long body heights. This usually means that after users are done going through our awesome content they are forced into a scrolling sprint back to our website’s header in order to examine more navigation options (which also kinda means our landing page should have more interesting calls to action, but that’s a different story).
One way to mitigate this terrible experience and improve our website’s user friendliness would be to make our header sticky (which we’ll cover in another tutorial), but that’s something that’s not always desirable. Another way, one which we’ll cover in this tutorial, is to add a so-called “back to top” button which stays fixed as we scroll down and smoothly transitions us back to the very top when it gets clicked. This kind of “scroll to top” behavior is so necessary in some use-cases that iOS even has it embedded as a feature in pretty much the core of the OS (by tapping the status bar).
Let’s go ahead and see how simple it is to add this kind of functionality to any website with a simple button.
Our button’s requirements
We’re going to start, as always, by listing our requirements; what we need to accomplish. Thus, the button must:
- Appear only when the user has scrolled enough so that its existence is justified.
- Hide itself if the user manually scrolls up into that threshold again.
- Always remain visible after the threshold and follow along as the user scrolls.
- Get us smoothly back to the very top when it’s clicked.
Markup and styling
The HTML we’ll need is extremely simple: just a button element. Go ahead and open your WordPress (child) theme’s footer.php
file and right before the body
element closes add the following:
Of course the icon is up to you, I chose a simple up arrow entity for brevity.
If we refresh the page right now we should see an ugly button sitting below our website’s footer, so let’s give it some style; in our (child) theme’s stylesheet:
And here’s how it should look:
light
Pretty cool so far, but before we go any further let’s add a few more styles. We want to start by having the button hidden, and then we’ll define a new class which we’ll later enable via JavaScript and turn it back to visible.
Making it functional
All righty, we’ve got our button styled and ready (and invisible), time to actually make it work. First thing we need to do is to actually make it smooth scroll back to the top when it’s clicked. Let’s add that code in our theme’s scripts
file (make sure jQuery is loaded!):
Now every time the button is clicked, it’ll scroll us to the very top of our website within 400 milliseconds (feel free to adjust the timing to your liking).
If we hadn’t required that the button starts hidden we’d be done right now. But we want to show it only when the user has scrolled enough to actually be useful.
What we need for this is to tap into the scroll event of the browser’s window
object and check if we’re scrolled enough from the top; if we are, we’ll add that .button-top-visible
CSS class and show it. If we aren’t we’ll remove it (and consequently hide the button).
So, the actual event we’re after is probably the scroll
event as the name implies, but how are we going to figure out how much we’ve scrolled so far? Let’s see what jQuery offers.
.scrollTop()
: Get the current vertical position of the scroll bar for the first element in the set of matched elements.
Well, that sounds exactly what we need. Let’s amend our code and do just that.
Perfect! Inside our scroll event listener we check for a simple condition, if we’re scrolled more than 100 pixels we’ll show the button, if not, we’ll hide it!
Advanced: Optimizing for performance
Our button is ready at this point, it fulfills all the requirements we’ve specified when we started, but I couldn’t possibly end this tutorial without bringing awareness to the fact that our code, although elegant, comes with a performance headache: the callback function we provide to the window’s scroll event listener is going to be called an inordinate amount of times, because the scroll event by nature is fired every time the scroll position changes (which is, again, a lot lot lot more than we need).
We don’t really need to check every millisecond or so. We’ll be good sports and debounce our function so that it gets called only once we’ve stopped scrolling and X amount of time (let’s say every quarter of a second) has passed since the last call.
A naïve, quick and dirty approach is the following:
We’re not exactly debouncing here, but it comes very close, and with minimal code (credits go to css-tricks). In this iteration our check will run only once we’ve stopped scrolling and 250ms have passed since the last check.
For more advanced/robust usage you can use an actual debounce implementation like the one Underscore provides.
Here’s the final outcome (feel free to scroll and click):
light
And that’s it! We’re ready to add a simple back-to-top button to our WordPress (or any kind of) website! Feel free to post in the comments if you decide to add it on your own website or have already done so!
10 responses to “How to add a back-to-top button on your WordPress website”
Great article, thanks! I’m not getting the script to work correctly. The button just doesn’t appear. jQuery is loaded, and I created a new scripts file for testing purposes. Any ideas what could be going on?
Hello, thanks for liking the article. Are there any errors in your browser’s developer console? if not can you share a link of your implementation?
Hi Vassilis,
1st of all thanks for your article!
My question: When you say “Let’s add that code in our theme’s scripts file (make sure jQuery is loaded!)” which file are you refering to? And I thought we have to enque scrips on WordPress? But you are not enquing? Or do you have a custom js file where you have put all small scripts in one file?
Sorry for my stupidity!
Thanks alot!!
Many regards.
Hiya, thanks for the question! Indeed this mini tutorial assumes the reader has already a custom scripts file loaded in their theme (usually a scripts.js file in the theme itself), but generally it’s really easy to include a custom JavaScript file, from the official docs here: https://developer.wordpress.org/themes/basics/including-css-javascript/ or even via plugins as described here: https://www.wpbeginner.com/wp-tutorials/how-to-easily-add-javascript-in-wordpress-pages-or-posts/
This is the most detailed post I’ve read so far, everything worked for me except step 3. “Let’s add that code in our theme’s scripts file (make sure jQuery is loaded!)” It may be that I’m unfamiliar with JS and JQuery and have no idea what the lingo means. Can you please provide a step by step of this? If I am in the Child Theme Cpanel, do I create a script.js and paste in the code? Please help!
Thanks in advance :)
Hi! Thanks for the nice feedback, appreciate it. Typically your theme would already include a scripts.js file where you could place the code in, or alternatively you could create a new file and tell WordPress to enqueue it on your site. The following official guide should give you a thorough idea on how to do that: https://developer.wordpress.org/themes/basics/including-css-javascript
Hi Vassilis, this is a nice written article.
I will try to implement it on my website: https://inter-nauts.com
I am pretty new to wordpress, but not a really beginner in CSS.
Thanks a lot.
would be nice if this an others methods online actually worked as intended maybe if someone does a real full guide on wordpress back to top buttons, guess when i get a fully functional back to top button that works i will write a article
Hello.
Could you let us know of the issues you are facing with the suggested implementation of the back to top button?
This code is great, but in the new WordPress full site editor, this thing is doable without writing a single line of code. :)