-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory-el-club-express-tv.php
65 lines (38 loc) · 1.55 KB
/
category-el-club-express-tv.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php get_header(); ?>
<div id="content">
<div class="padder double-border">
<?php do_action( 'bp_before_archive' ) ?>
<div class="page" id="blog-archives" role="main">
<?php /* ?><h3 class="pagetitle"><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3><?php */ ?>
<?php if ( have_posts() ) : ?>
<?php $i = 0; ?>
<?php while (have_posts()) : the_post(); ?>
<?php do_action( 'bp_before_blog_post' ) ?>
<?php
$ece_tv_id = get_the_ID();
$video_url = get_post_meta($ece_tv_id, 'enlace-video-youtube', true);
?>
<div class="bloque-ele-tv<?php if($i%2 != 0){echo ' margin-left15';} ?>">
<?php
echo '<div class="imagen-ele-tv"><a href="'.get_permalink().'">';
echo do_shortcode('[youtube='.$video_url.'&w=325&h=183]');
echo '</a></div>';
?>
<h2 class="title-bloque2 font-normal"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</div>
<?php $i++; ?>
<?php do_action( 'bp_after_blog_post' ) ?>
<?php endwhile; ?>
<?php //bp_dtheme_content_nav( 'nav-below' ); ?>
<?php wp_pagenavi(); ?>
<?php else : ?>
<h2 class="center"><?php _e( 'Not Found', 'buddypress' ) ?></h2>
<?php get_search_form() ?>
<?php endif; ?>
</div>
<?php do_action( 'bp_after_archive' ) ?>
</div><!-- .padder -->
</div><!-- #content -->
<?php get_sidebar() ?>
<?php get_footer(); ?>