Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
  • in reply to: sidebar bbpress #8562
     krecikm
    Participant

    dynamic_sidebar(‘forum_sidebar’); – work’s

    in reply to: Registration using Facebook #8535
     krecikm
    Participant

    Try clear cookies

    in reply to: Notifications #8378
     krecikm
    Participant

    I manually editing the code content of the notifications

    in reply to: Custom Post Type and carousel slider #8064
     krecikm
    Participant

    I did it – works but it’s not be good idea?

    COPY CODE
    
    $args = array(
                'post_type' => 'dzieci',
                'taxonomy' => 'post_format',
                'field' => 'slug',
                'terms' => $terms_query
            );
            
            
            $latestPosts = new WP_Query(apply_filters('kleo_posts_carousel_args',$args));
            
            while ($latestPosts-> have_posts()) :$latestPosts-> the_post();
                
                switch (get_post_format()) {
                    
                    default:
                            $output .= '<li>';  
                            if (get_post_thumbnail_id())
                            {  
                                $output .= '<div class=""><a href="'.  get_permalink().'">';
                                $output .= '<span class="read"><i class="icon-'.apply_filters('kleo_img_rounded_icon','heart').'"></i></span>';
                                $output .= get_the_post_thumbnail(null,'blog_carousel');
                                $output .= '</a></div>';
                            }
                            $output .= '<h4>'.get_the_title().'</h4>';
                            $output .= '<p>'.  word_trim(get_the_excerpt(), 15, '...').'</p>';
                            $output .= '<p><a href="'.  get_permalink() .'"><i class="icon-angle-right"></i> '.__("ZOBACZ", 'kleo_framework').'</a></p>';
                            $output .= '</li>';
                        break;
                }
    
            endwhile;
          
            $output .= '</ul></div><!--end carousel-stories-->'.
    				'</div>';
    		
            return $output;
    
    in reply to: Edit register form #8025
     krecikm
    Participant

    That’s great.

Viewing 5 posts - 1 through 5 (of 5 total)

Log in with your credentials

Forgot your details?