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
remove_action( 'genesis_before_loop', 'genesis_do_author_box_archive' ); | |
add_action( 'genesis_before_loop', 'theme_author_box_archive' ); | |
function theme_author_box_archive() { | |
$authinfo = "<div class=\"author-box\">\r\n"; | |
$authinfo .= get_avatar( get_the_author_meta('email', (int) get_query_var( 'author' )), '50' ); | |
$authinfo .= "<b>" . get_the_author_meta('display_name', (int) get_query_var( 'author' )) . "\n </b>"; | |
$authinfo .= "<p>" . get_the_author_meta('description', (int) get_query_var( 'author' )) . "</p>\r\n"; | |
$facebook = get_the_author_meta('facebook_profile', (int) get_query_var( 'author' )); | |
$twitter = get_the_author_meta('twitter_profile', (int) get_query_var( 'author' )); |
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 | |
/****Creating Custom Post Types of Classifieds Starts****/ | |
function my_custom_post_classifieds() { | |
$labels = array( | |
'name' => _x( 'Classifieds', 'post type general name' ), | |
'singular_name' => _x( 'Classified', 'post type singular name' ), | |
'add_new' => _x( 'Add New', 'book' ), | |
'add_new_item' => __( 'Add New Classified' ), |
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> | |
<style> | |
#maincont { | |
border: 1px solid black; | |
width: 910px; | |
overflow: hidden; | |
min-height: 400px; | |
margin: 0 auto; | |
} |
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 | |
add_action('genesis_entry_header','image_above_t',7); | |
function image_above_t() { | |
?> | |
<div id="i_a_t" style="width: 200px; margin:0 auto;"> | |
<?php | |
echo genesis_get_image(); | |
?> | |
</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
<?php | |
function getShares($atts) { | |
extract(shortcode_atts(array( | |
'url' => '', | |
'p_id' => '', | |
'bordercolor' => '#dddddd', | |
'textcolor' => '#333333', | |
'border ' => '1', | |
'bordertype' => 'solid', |
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 | |
//to catch & print first image occuring in post content (the_content) via famous 'catch-that-image' | |
/* we could have also used genesis_get_image() to catch the first image instead of 'catch_that_image' script; | |
but genesis_get_image() was actually catching "first uploaded image" instead of "first image occuring in the_content". | |
Link to snippet using genesis_get_image -- https://gist.github.com/vajrasar/6559551 | |
*/ |
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
###################### | |
#Script1 : scraper.py | |
###################### | |
import urllib2 | |
import datetime | |
def main(): | |
ph = urllib2.ProxyHandler({'http': 'http://xxx:[email protected]:80'}) | |
opener = urllib2.build_opener(ph) |
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 | |
/* | |
To add Infinite Loop Module provided in Jetpack wordpress Plugin, in Genesis driven site. | |
*/ | |
/* | |
Step 1. Install Jetpack Plugin | |
*/ |
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 | |
/* | |
Here we will find out the WIDTH of 'first' image occuring in our 'the_content' | |
*/ | |
/* | |
Step: 1 | |
Using the famous 'catch_that_image' snippet, we will fetch the url of first image | |
occuring in the content and will pass the same url while calling a function to find |
OlderNewer