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
Theme Name: Twenty Thirteen Child | |
Theme URI: http://example.com/wp-content/themes/twenty-thirteen-child/ | |
Description: Twenty Thirteen Child Theme | |
Author: Any Name | |
Author URI: http://example.com | |
Template: twentythirteen | |
Version: 1.0.0 | |
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready | |
Text Domain: twenty-thirteen-child | |
*/ |
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 | |
function theme_enqueue_styles() { | |
$parent_style = 'twentythirteen-style'; | |
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); | |
wp_enqueue_style( 'twentythirteen-child-style', | |
get_stylesheet_directory_uri() . '/style.css', | |
array( $parent_style ) | |
); | |
} | |
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); |
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 | |
/* An example of enqueuing a child theme.... xyz=your parent theme direcrtory name, you can find it in wp-content/themes/ directory. */ | |
//*********************** | |
function enqueue_my_styles() { | |
$parent_style = 'xyz-style'; | |
// Gives value of variable xyz | |
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); | |
// To enqueue parent theme css |
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
dd_action('init','remove_default_foodhunt_credits'); | |
function remove_default_foodhunt_credits(){ | |
remove_action('foodhunt_footer_copyright','foodhunt_footer_copyright'); | |
} | |
add_filter('foodhunt_footer_copyright', 'foodhunt_custom_credits'); | |
function foodhunt_custom_credits(){ | |
$foodhunt_custom_credits = ""; //add here any text you want to put in footer credits | |
$credit_value ='<div class="copyright"><span class="copyright-text">Copyright © ' . date('Y') . ' <a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" ><span>' . get_bloginfo( 'name', 'display' ) . '.</span></a> ' .$foodhunt_custom_credits. '</span></div>'; | |
echo $credit_value; |
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
{ | |
//run in chrome task | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"command": "chrome", | |
"tasks": [ | |
{ | |
"label": "Run in Chrome", | |
"windows": { |
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
#blog_subscription-4 .widget-title{ | |
display:none; | |
} | |
#subscribe-blog-blog_subscription-4{ | |
color:white; | |
padding: 15px; | |
display: block; | |
background-color:#e8554e | |
} |
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
pre { | |
color: white; | |
border-left: 6px solid #bbb; | |
padding:5px 10px; | |
background: rgb(105,105,105); | |
font-size: 14px; | |
margin-right: 50px; | |
white-space:pre-wrap; | |
} | |
pre::selection { color: #696969; background: rgba(255, 255, 255, 0.996); |
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
<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. |
OlderNewer