Scripts To Footer for WordPress Plugin Directory
Scripts To Footer is the #76 ranked performance app on WordPress, with a 4.7 average rating from 37 reviews, as of Aug 31, 2026.
Scripts To Footer is a WordPress Plugin Directory app by Joshua David Nelson. With a rating of 4.7★ from 37 reviews, it currently ranks #76 in the Performance category.
AppRanks data: Scripts To Footer ranks #76 in Performance on WordPress Plugin Directory, placing it in the top 10% of that category.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Scripts To Footer is a highly rated WordPress app with a limited review volume. It is listed in the Performance category on WordPress Plugin Directory, which AppRanks treats as the canonical taxonomy node for ranking and competitor comparison. 37 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +High average rating (4.7★) signals consistent merchant satisfaction
- +Published by Joshua David Nelson — established developer track record
Cons
- −Limited review base (37) — ratings can shift significantly with new feedback
Looking to switch from Scripts To Footer?
See Scripts To Footer's alternatives ranked by audit score, rating, and review velocity.
How Scripts To Footer works
Show full descriptionShow less
This small plugin moves scripts to the footer. Note that this only works if you have plugins and a theme that utilizes wp_enqueue_scripts correctly.
You can disable the plugin on specific pages and posts directly via the post/page edit screen metabox.
You can disable the plugin on specific archive pages (blog page, search page, post type and taxonomy archives) via the settings page.
Everything Broken? Try placing jQuery back into the header via Settings > Scripts to Footer, “Keep jQuery in the Header” checkbox. If that doesn’t work, refer to the walkthrough below for using the stf_exclude_scripts filter for the script that is causing the issue.
Check out the documentation on GitHub or some quick walkthroughs below.
Keeping specific Scripts in the Header As of version 0.6 you can now keep specific scripts in the header. Note: this will print any scripts they depend on as well (if you want to keep jquery-effects-core in the header, you’ll also get jQuery in the header, so no need to add both).
Specifically for jQuery, see the settings page option, as it is a common request we’ve built it into the settings.
For any other scripts, use this filter:
add_filter( 'stf_exclude_scripts', 'jdn_header_scripts', 10, 1 ); function jdn_header_scripts( $scripts ) {
$scripts[] = 'backbone'; // Replace 'backbone' with the script slug
return $scripts; }
You will need the correct script slug, which is used when the script is registered, and the script will only be printed into the header if it’s enqueued. Check out the scripts that come registered out-of-the-box with WordPress.
Note: As of version 0.6.3, conditional tags will work with the stf_exclude_scripts filter.
Custom Post Type Support If you’re comfortable with code you can use the scripts_to_footer_post_types filter to change the post types this applies to (it only applies to pages and posts by default). For example, if you have a custom post type called “project” you could add support for this metabox via the post type filter like this:
function stf_add_cpt_support( $post_types ) {
$post_types[] = 'project';
return $post_types; } add_filter( 'scripts_to_footer_post_types', 'stf_add_cpt_support' );
Excluding Pages/Posts/Templates Via Filter You can either use the checkbox option to disable the plugin’s action on a specific page/post, or you can utilize a filter. The filter also passes the post/page id, if there is one (archive templates don’t have ids!).
For example, for the “page” post type:
function stf_exclude_my_page( $exclude_page, $post_id ) {
if ( is_front_page() ) { $exclude_page = 'on'; // this turns on the "exclude" option }
return $exclude_page; } add_filter( 'stf_page', 'stf_exclude_my_page' );
Replace stf_page with stf_post for posts, or the slug of your custom post type. For instance, a post type called “project” can be filtered with stf_project.
More Documentation See the plugin’s wiki.
Development / Contributing View this plugin on GitHub.
Support Please feel free to open a Github Issue to report conflicts or goto the WP.org support forum. If there is something wrong with Scripts-to-Footer, we’ll update it. However, if it’s a another plugin or theme we can only contact the developer with the issue to attempt to resolve it.
Category rankings
As of Sep 3, 2026- Performance#76of 762Top 10%
See 90-day rank history for each category
Track daily rank changes, category shifts, and position volatility.
Competitors & alternatives
Scripts To Footer doesn't have curated competitor matchups yet. Other tracked performance apps on WordPress:
Where Scripts To Footer stands in the Performance category
Scripts To Footer ranks #76 of 762 apps in the Performance category, placing it in the top 10% of the listing.
Frequently asked questions
What is Scripts To Footer?
Scripts To Footer is an app for WordPress. It currently holds a 4.7-star rating from 37 merchant reviews, and AppRanks has been tracking its public marketplace data on the refresh cadence published in our methodology. It is listed under the Performance category on AppRanks, where you can see its current category position, review-velocity trend, and how it compares against the top alternatives in the same space. Developed by Joshua David Nelson.
Who uses Scripts To Footer?
Currently around 7,000 active stores have installed Scripts To Footer. Its review base is still building, which usually maps to early-stage merchants and stores piloting a new workflow. It is part of the Performance category on WordPress.
Where does Scripts To Footer rank on WordPress?
Scripts To Footer currently sits at position #76 in the Performance category on WordPress. That places it in the top 10% of 762 apps tracked in the same category. Category positions are read from the live marketplace ranking and refresh on each scrape, so the number you see here reflects the most recent crawl rather than a long-running average.