View generatepress-sangams-blog-additional-css.css
#right-sidebar { | |
position: -webkit-sticky; | |
position: sticky; | |
top: 0; | |
} | |
.site-header, .inside-article,.sidebar .widget, .comments-area, .paging-navigation, .my-ad, .wp-block-image { | |
-webkit-box-shadow: 5px 5px 30px -10px rgba(46,46,46,0.5); | |
-moz-box-shadow: 5px 5px 30px -10px rgba(46,46,46,0.5); |
View ads-after-each-3rd-paragraph.php
<?php | |
//-------------------------------------------------------------- | |
//-------------------------------------------------------------- | |
//---------COPY CODE BELOW THIS LINE---------------------------- | |
//Adding adsense ad unit inside the article | |
//Insert ads after every third paragraph of single post content. |
View ads-inside-content-1.php
<?php | |
//adding adsense ad unit inside the article | |
//Insert ads after second paragraph of single post content. | |
add_filter( 'the_content', 'prefix_insert_post_ads' ); | |
function prefix_insert_post_ads( $content ) { | |
$ad_code1 = '<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> |
View ads-inside-content-2.php
//adding adsense ad unit inside the article | |
//Insert ads after second paragraph of single post content. | |
add_filter( 'the_content', 'prefix_insert_post_ads' ); | |
function prefix_insert_post_ads( $content ) { | |
$ad_code1 = '<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> | |
<!-- inContent --> |
View max-age_must-revalidate.htaccess
# Set page cache expiration time to 10 minutes | |
Header set Cache-Control "max-age=600, must-revalidate" "expr=%{REQUEST_URI} !~ m#^/wp-admin#" |
View cloudflare-worker-edge-cache.js
// Stop CF edge from caching your site when specific wordpress cookies are present | |
// script found in https://www.mmaton.com/2018/07/02/cloudflare-cache-anonymous-requests/ | |
addEventListener('fetch', event => { | |
event.respondWith(noCacheOnCookie(event.request)) | |
}) | |
async function noCacheOnCookie(request) { | |
// Determine which group this request is in. | |
const cookie = request.headers.get('Cookie') |
View cloudflare-worker-cors-fonts.js
// Sets Access-Control-Allow-Origin for fonts | |
// this worker should be used in subdomain from where fonts are being loaded but not in main site | |
// eg. www.example.com & static.example.com | |
// use this worker script with static.example.com | |
let corsHeaders = { | |
"Access-Control-Allow-Origin" : "https://sangams.com.np", | |
} | |
addEventListener('fetch', event => { |
View mailchimpamp.html
<section id="enews-ext-3" class="enews-widget"> | |
<div class="enews"> | |
<div class="widget-wrap"> | |
<form id="subscribeenews-ext-3" name="submit" method="post" action-xhr="https://sangams.com.np/wpx/mailchimp-post.php" target="_top"> | |
<p>Get awesome content delivered straight to your inbox. </p> | |
<input type="email" name="email" placeholder="Enter your email address" required=""> | |
<input type="submit" value="Subscribe"> | |
<div submitting> | |
<template type="amp-mustache"> | |
Form submitting... Thank you for waiting. |
NewerOlder