Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
closing tickets and adding social to articles
344 345 346
  • Loading branch information
cmc12028 committed Apr 12, 2016
1 parent e6cfee0 commit ffd7c0c
Show file tree
Hide file tree
Showing 5 changed files with 161 additions and 7 deletions.
5 changes: 5 additions & 0 deletions _notes/dwsync.xml
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="grandchild-styles.css" server="development.wordpress.uconn.edu/edu.uconn.wordpress.development/public_html/wp-content/" local="131046161877716516" remote="131046161860000000" Dst="2" />
<file name="grandchild-functions.php" server="development.wordpress.uconn.edu/edu.uconn.wordpress.development/public_html/wp-content/" local="131046073617831410" remote="131046073610000000" Dst="2" />
</dwsync>
13 changes: 12 additions & 1 deletion grandchild-functions.php
Expand Up @@ -61,4 +61,15 @@ add_filter( 'load_custom_footer', '__return_true', 99 );

add_filter( 'get_custom_footer', function( $footer ) {
return plugin_dir_path( __FILE__ ).'templates/footer.php';
}, 99 );
}, 99 );

add_filter('template_include', 'my_plugin_templates');
function my_plugin_templates( $template ) {
$post_types = array('post');

if (is_singular($post_types)) {
$template = plugin_dir_path( __FILE__ ).'templates/single.php';
}

return $template;
}
26 changes: 20 additions & 6 deletions grandchild-styles.css
@@ -1,3 +1,21 @@
#social-buttons a img {
margin-right: 0.5em;
margin-top: -1px;
width: 20px;
}

#social-buttons a{
padding-right:10px;
}

#uc-site-parent a{
color:#eeeeee!important;
}

.widget_sp_image li {
max-height: 55px;
}

#site-title .widget_sp_image {
list-style-type:none;
padding-top: 28px;
Expand All @@ -18,12 +36,8 @@ float:right;
}


.social-facebook:before {
display: none;
}

.social-twitter:before {
display: none;
#footer-social-stormwise li:before {
display:none;
}

.simple-social-icons ul li a, .simple-social-icons ul li a:hover {
Expand Down
1 change: 1 addition & 0 deletions templates/_notes/dwsync.xml
Expand Up @@ -2,4 +2,5 @@
<dwsync>
<file name="footer.php" server="development.wordpress.uconn.edu/edu.uconn.wordpress.development/public_html/wp-content/" local="131020296231496563" remote="131020296230000000" Dst="1" />
<file name="header.php" server="development.wordpress.uconn.edu/edu.uconn.wordpress.development/public_html/wp-content/" local="131020220764679034" remote="131020220760000000" Dst="1" />
<file name="single.php" server="development.wordpress.uconn.edu/edu.uconn.wordpress.development/public_html/wp-content/" local="131046170364755135" remote="131046170350000000" Dst="2" />
</dwsync>
123 changes: 123 additions & 0 deletions templates/single.php
@@ -0,0 +1,123 @@
<?php
/**
* The Template for displaying all single posts.
*
* @package cornerstone
*/

get_header(); ?>
<div id="page-single">
<div class="row">
<div class="col-md-9">

<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">

<?php while ( have_posts() ) : the_post(); ?>

<?php
// This is used when viewing a single post.
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php /* if ( has_post_thumbnail() ) {
echo '<div class="row">';
echo '<div class="col-sm-2">';
the_post_thumbnail();
echo '</div>';
echo '<div class="col-sm-10">';
} */?>

<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<div class="entry-meta">
<?php cs_posted_on(); ?>
</div><!-- .entry-meta -->

<?php /*if ( has_post_thumbnail() ) {
echo '</div>';
echo '</div>';
} */?>

</header><!-- .entry-header -->

<div class="entry-content clearfix subpage">


<?php the_content(); ?>
<footer class="entry-footer">

<hr/>
<div id="social-buttons">
Share on:&nbsp; <a href="http://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>"><img src="<?php echo plugin_dir_url(dirname(__FILE__)) . 'img/asset.f.logo.lg.png';?>" alt="facebook" />Facebook</a>
<a href="http://twitter.com/share?url=<?php the_permalink(); ?>&text=<?php echo get_the_excerpt(); ?>"><img src="<?php echo plugin_dir_url(dirname(__FILE__)) .'img/twitter-bird-white-on-blue.png';?>" alt="Twitter" />Twitter</a>
<a href="http://www.linkedin.com/shareArticle?url=<?php the_permalink(); ?>&title=<?php echo get_the_title(); ?>&summary=<?php echo get_the_excerpt(); ?>&source=<?php the_permalink(); ?>"> <img src="<?php echo plugin_dir_url(dirname(__FILE__)) .'img/linkedin.png';?>" alt="LinkedIn" />LinkedIn</a>
<a href="mailto:?subject=Shared from <?php bloginfo ('name') ?>&amp;body=<?php echo get_the_title(); ?>%0D%0A%0D%0A<?php the_permalink(); ?>"><img src="<?php echo plugin_dir_url(dirname(__FILE__)) .'img/email-icon.png';?>" alt="email" />Email</a>
</div>
<br />
<br />

<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'cs' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->


<?php
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( ', ', 'cs' ) );

/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', __( ', ', 'cs' ) );

if ( ! cs_categorized_blog() ) {
// This blog only has 1 category so we just need to worry about tags in the meta text
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was tagged %2$s.', 'cs' );
} else {
$meta_text = __( '', 'cs' );
}

} else {
// But this blog has loads of categories so we should probably display them here
if ( '' != $tag_list ) {
$meta_text = __( 'This entry was posted in %1$s and tagged %2$s.', 'cs' );
} else {
$meta_text = __( 'This entry was posted in %1$s.', 'cs' );
}

} // end check for categories on this blog

printf(
$meta_text,
$category_list,
$tag_list,
get_permalink()
);
?>


</footer><!-- .entry-footer -->
</article><!-- #post-## -->


<?php cs_post_nav(); ?>

<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) :
comments_template();
endif;
?>

<?php endwhile; // end of the loop. ?>

</main><!-- #main -->
</div><!-- #primary -->
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>

0 comments on commit ffd7c0c

Please sign in to comment.