This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* WordPress URL Exclude List for Screaming Frog Spider | |
* @author TJ Kelly - https://tjkelly.com | |
* @desc Full article — https://tjkelly.com/blog/screaming-frog-exclude-wordpress/ | |
* @date 2021-07-08 | |
*/ | |
https://example.com/wp-content/.* | |
https://example.com/wp-content/mu-plugins/.* | |
https://example.com/wp-content/plugins/.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){output="<html><head>";output+="<title>SEO SERP Extraction Tool</title>";output+='<style type="text/css">';output+="*{font-family:georgia;word-break:break-all}";output+="</style>";output+="</head><body>";pageAnchors=document.getElementsByTagName("a");divClasses=document.getElementsByTagName("div");var linkcount=0;var linkLocation="";var linkAnchorText="";output+="<h1>Results</h1>";output+='<div id="wrap"><table border="1" cellspacing="0" cellpadding="4"><th>#</th><th>Link</th><th>Anchor</th>';for(i=0;i<pageAnchors.length;i++){if(pageAnchors[i].parentNode.parentNode.getAttribute("class")!="iUh30"){var anchorText=pageAnchors[i].textContent;for(j=0;j<pageAnchors[i].childNodes.length;j++){if(pageAnchors[i].childNodes[j].className=="LC20lb DKV0Md"){var anchorText=pageAnchors[i].childNodes[j].textContent}}var anchorLink=pageAnchors[i].href;var linkAnchor=anchorLink+"\t"+anchorText;var anchorID=pageAnchors[i].id;if(anchorLink!=""){if(anchorLink.match(/^((?!google\.|cache|blogger.com|\.yahoo\.|y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Easy Hash Lock by Mxt Media | |
* | |
* @author TJ Kelly @ Mxt Media - https://getmxt.com | |
* | |
* @date 2018-02-20 | |
* | |
* @desc Lock any page and pop a lead form by adding "#lock" to the URL | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
"use strict"; | |
function tjk_fixed_width(){ | |
var widget_area = $('div.widget-area'), | |
widget_text = widget_area.find('aside.widget.widget_text'); | |
if(window.scrollTop > widget_area.height()){ |