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 | |
YoastSEO()->meta->for_post($post->ID)->title; | |
YoastSEO()->meta->for_post($post->ID)->canonical; | |
// Other values with their default values | |
// 'canonical' => null, | |
// 'title' => null, | |
// 'description' => null, | |
// 'open_graph_title' => null, | |
// 'open_graph_image' => 'open_graph_image', |
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
<html> | |
<head> | |
<title>Check Prismic SEO Length Bookmarklet</title> | |
</head> | |
<body> | |
<div> | |
<h1>Drag this button to your bookmarks</h1> | |
<button><a id="bookmarklet" href="" title="Check SEO Length">Check SEO length</a></button> | |
<p>Then press the button on the editor page</p> | |
</div> |
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
yesterdaysTimestamp=$(date -d "yesterday 13:00" +'%d/%b/%Y') | |
# date is expected to be passed in the following format 18/Jul/2017 | |
siteName="example.com" | |
logPath="/srv/www/$siteName/logs/access.log" | |
# Depending on the size of the access log you might have to add * to include multiple files | |
# To grep through .gz files use zgrep instead of grep | |
# grep -v 'onpage' excludes requests from onpage bot, add pipes to exclude other unwanted bots using Googlebot as their UserAgent | |
# Prepare results | |
googleBot=$(grep 'Googlebot' $logPath | grep $yesterdaysTimestamp | grep -v 'onpage' | wc -l) |