here is contet-post.php
<?php
/**
* @package GetNoticed
* @since GetNoticed 1.0
*/
global $getnoticedMeta;
if ( ! is_array($getnoticedMeta) ) $getnoticedMeta = getnoticed_theme_meta( get_the_ID(), get_post_type() );
if ( !isset($postclass) ) $postclass = '';
if ( !empty($getnoticedMeta['posttitle']) ) $postclass .= ' posttitle-' . $getnoticedMeta['posttitle'];
if ( $getnoticedMeta['introfeature'] ) {
$postclass .= ' introfeature';
if ( $getnoticedMeta['dropcaps'] ) add_filter( 'the_content', 'getnoticed_dropcap', 90 );
else add_filter( 'the_content', 'getnoticed_introfeature', 90 );
} else {
if ( $getnoticedMeta['dropcaps'] ) add_filter( 'the_content', 'getnoticed_dropcap', 90 );
}
#!! I think we should redo this.
if ( $getnoticedMeta['featuredimages'] == 'before' ) add_filter( 'the_content', 'getnoticed_featuredimage_before', 85 );
if ( $getnoticedMeta['featuredimages'] == 'after' ) add_filter( 'the_content', 'getnoticed_featuredimage_after', 85 );
?>
<article id="post-<?php the_ID(); ?>" <?php post_class($postclass); ?>>
<header class="entry-header">
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php get_template_part( 'content-post-header' ); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php do_action( 'getnoticed_subtitle' ); ?>
<?php do_action( 'getnoticed_byline' ); ?>
</header><!-- .entry-header -->
<?php
do_action( 'getnoticed_sharebar', 'top' );
do_action( 'getnoticed_authorbox', 'top', $getnoticedMeta );
do_action( 'getnoticed_post_ads', 'top' );
?>
<div class="entry-content">
<?php
the_content('');
?>
</div>
<?php
do_action( 'getnoticed_authorbox', 'bottom', $getnoticedMeta );
do_action( 'getnoticed_sharebar', 'bottom' );
do_action( 'getnoticed_post_ads', 'bottom' );
do_action( 'getnoticed_nrelate' );
?>
<div class="entry-footer">
<div class="entry-date-wrap">
<?php getnoticed_posted_on(); ?>
<?php edit_post_link( __( '<em>edit</em>', 'getnoticed' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
</div>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'getnoticed' ) );
if ( $categories_list && getnoticed_categorized_blog() ) :
$categories_label = ( strpos( $categories_list, ', ' ) === false ) ? __( 'Category', 'getnoticed' ) : __( 'Categories', 'getnoticed' );
?>
<span class="cat-links">
<?php printf( __( $categories_label . ': %1$s', 'getnoticed' ), $categories_list ); ?>
</span>
<?php endif; // End if categories ?>
<?php edit_post_link( __( '<em>[edit post]</em>', 'getnoticed' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
<?php do_action( 'getnoticed_ftcdisclosure' ); ?>
</div>
</article>
<?php
remove_filter( 'the_content', 'getnoticed_featuredimage_before', 85 );
remove_filter( 'the_content', 'getnoticed_featuredimage_after', 85 );
if ( $getnoticedMeta['dropcaps'] ) remove_filter('the_content', 'getnoticed_dropcap', 90);
if ( $getnoticedMeta['introfeature'] ) remove_filter('the_content', 'getnoticed_introfeature', 90);
?>
Thanks for not giving up on me