/**
     * Front-end display of widget.
     *
     * @see WP_Widget::widget()
     *
     * @param array $args     Widget arguments.
     * @param array $instance Saved values from database.
     */
    public function widget($args, $instance)
    {
        $postId = $instance['topVideo'];
        $post = get_post($postId);
        $post_excerpt = $post->post_excerpt;
        //get_post_meta($postId);
        $thumb = get_post_meta($postId, 'wpcf-thumbnail', true);
        $video_url = get_post_meta($postId, 'wpcf-video', true);
        $title = get_the_title();
        $description = get_the_title();
        //print_r($title);  die;
        //print_r($video_url);
        //die;
        ?>
		<div class="breking_news">
			<div class="newsLft">
				<div class="breking_news_img breaking_news_img_padding">
				<?php 
        displayVideo('breking_news_img', $thumb, $video_url, 394, 222, $title, $description);
        ?>
				</div>
				</div>
				
			<div class="newsRht">
				<div class="breking_news_data">
					<span><?php 
        echo date('M d, Y', strtotime($post->post_date));
        ?>
</span>
					<?php 
        echo $post_excerpt;
        ?>
					<h1><?php 
        echo $post->post_title;
        ?>
</h1>
					<a class="spa" href="<?php 
        echo get_permalink($postId);
        ?>
">Read more &gt;</a></p>
					<h6 class="shere"><b>Share:</b><img src="<?php 
        echo get_template_directory_uri();
        ?>
/images/share-links.png" width="234" height="20" alt="share"></h6>
				</div>
			</div>
		</div>

	<?php 
    }
Example #2
0
function displayImage($sid)
{
    $sql = "SELECT * FROM `images` WHERE `images`.`archived` = '0' ORDER BY id ASC";
    if (!($result = $GLOBALS['db']->query($sql))) {
        die("Database error! (displayImage)");
    }
    while ($row = $result->fetch_assoc()) {
        if ($row['sid'] == $sid) {
            if ($row['type'] == 0) {
                return "<img src='data:image/png;base64," . $row['data'] . "' class='imageview' />";
            } else {
                return displayVideo($sid);
            }
        }
    }
}