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
ββ BEGIN LICENSE ββ | |
TwitterInc | |
200 User License | |
EA7E-890007 | |
1D77F72E 390CDD93 4DCBA022 FAF60790 | |
61AA12C0 A37081C5 D0316412 4584D136 | |
94D7F7D4 95BC8C1C 527DA828 560BB037 | |
D1EDDD8C AE7B379F 50C9D69D B35179EF | |
2FE898C4 8E4277A8 555CE714 E1FB0E43 | |
D5D52613 C3D12E98 BC49967F 7652EED2 |
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
#modify necessary | |
<VirtualHost *:80> | |
DocumentRoot "D:/xampp/htdocs/" | |
ServerName localhost | |
</VirtualHost> | |
#we add this to make sure we can access to open PHPmyAdmin from http://localhost/phpmyadmin | |
#DocumentRoot - the root of the web server in your machine. In XAMPP it is ../xampp/htdocs/ | |
<VirtualHost *:80> |
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 | |
} |
OlderNewer