Skip to content

Commit

Permalink
adiciona animação na pagina dos cursos
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusgimenez committed Sep 26, 2019
1 parent 0fd82a5 commit 726b11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions inc/class-load-last-post-social-networks.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ private function get_facebook_feed() {
2. Click "Create New App" at https://developers.facebook.com/apps
3. Under Apps Settings, find the App ID and App Secret*/

$appID = '851152828309465';
$appSecret = 'aaaa0da4805e1940527bab6ed9ca77ed';
$app_id = coletivo_get_theme_mod( 'coletivo_ultimos_sociais_fb_appid' );
if ( ! $app_id ) {
ẁp_die( 'Preencha o AppID da página nas configurações' );
Expand Down
4 changes: 2 additions & 2 deletions template-cursos.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<?php $image = get_the_post_thumbnail_url( get_the_ID(), 'large' );?>
<?php $style = sprintf( 'background-image:url(%s);', $image );?>
<?php endif;?>
<section class="section section-type-metodo" style="<?php echo $style;?>">
<section class="section section-type-metodo wow fadeInUp" data-wow-delay="850ms" data-wow-duration="1100ms" style="<?php echo $style;?>">
<div class="container">
<h3 class="section-title col-md-1">
<?php the_title();?>
Expand All @@ -40,7 +40,7 @@
<div class="container query-cursos">
<?php if ( $query->have_posts() ) : ?>
<?php while( $query->have_posts() ) : $query->the_post(); ?>
<section class="section section-type-curso">
<section class="section section-type-curso wow fadeInUp" data-wow-delay="850ms" data-wow-duration="1100ms">
<div class="col-md-6">
<?php the_post_thumbnail('large');?>
</div>
Expand Down

0 comments on commit 726b11a

Please sign in to comment.