• De afgelopen dagen zijn er meerdere fora waarop bestaande accounts worden overgenomen door spammers. De gebruikersnamen en wachtwoorden zijn via een hack of een lek via andere sites buitgemaakt. Via have i been pwned? kan je controleren of jouw gegeven ook zijn buitgemaakt. Wijzig bij twijfel jouw wachtwoord of schakel de twee-staps-verificatie in.

Juiste plaats voor </div> in php-file

Status
Niet open voor verdere reacties.

Erick

Gewaardeerd
Lid geworden
17 mei 2007
Berichten
1.359
Waarderingsscore
3
Hoi,

Ik ben een stuk bestaande code aan het bewerken, maar het lukt met niet helemaal op de divs op de juiste plek te krijgen. namelijk de sluitende div voor de .blog-post-box.

Hoe het zit:
.blog-post-list is de wrapper. Daarin komen meerdere divs met de class .blog-post-box. In elke .blog-post-box staan vier andere divs:
.blog-post-image
.blog-post-title
.blog-post-intro
.blog-post-link

De .blog-post-box is eigenlijk dus ook een soort wrap.

<div class="blog-post-list"> <div class="blog-post-box"> <div class="blog-post-image">image</div> <div class="blog-post-title">Titel</div> <div class="blog-post-intro">Intro</div> <div class="blog-post-link"><span class="icon-chevron-right"></span></div> </div><!-- /.blog-post-box --> <div class="blog-post-box"> <div class="blog-post-image">image</div> <div class="blog-post-title">Titel</div> <div class="blog-post-intro">Intro</div> <div class="blog-post-link"><span class="icon-chevron-right"></span></div> </div><!-- /.blog-post-box --> </div><!-- /.blog-post-list">

Dit is de code waarin ik al een en ander geprobeerd heb:

<?php /** * Various functions used by the plugin. */ /** * Sets up the default arguments. * * @since 0.9.4 */ function rpwe_get_default_args() { $css_defaults = ""; $defaults = array( 'title' => esc_attr__('Recent Posts', 'rpwe'), 'title_url' => '', 'limit' => 5, 'offset' => 0, 'order' => 'DESC', 'orderby' => 'date', 'cat' => array(), 'tag' => array(), 'taxonomy' => '', 'post_type' => array('post'), 'post_status' => 'publish', 'ignore_sticky' => 1, 'exclude_current' => 1, 'excerpt' => false, 'length' => 10, 'thumb' => true, 'thumb_height' => 45, 'thumb_width' => 45, 'thumb_default' => 'http://placehold.it/45x45/f0f0f0/ccc', 'thumb_align' => 'rpwe-alignleft', 'date' => true, 'date_relative' => false, 'date_modified' => false, 'readmore' => false, 'readmore_text' => __('Read More &raquo;', 'recent-posts-widget-extended'), 'comment_count' => false, 'styles_default' => true, 'css' => $css_defaults, 'cssID' => '', 'css_class' => '', 'before' => '', 'after' => '' ); // Allow plugins/themes developer to filter the default arguments. return apply_filters('rpwe_default_args', $defaults); } /** * Outputs the recent posts. * * @since 0.9.4 */ function rpwe_recent_posts($args = array()) { echo rpwe_get_recent_posts($args); } /** * Generates the posts markup. * * @since 0.9.4 * @param array $args * @return string|array The HTML for the random posts. */ function rpwe_get_recent_posts($args = array()) { // Set up a default, empty variable. $html = ''; // Merge the input arguments and the defaults. $args = wp_parse_args($args, rpwe_get_default_args()); // Extract the array to allow easy use of variables. extract($args); // Allow devs to hook in stuff before the loop. do_action('rpwe_before_loop'); // Display the default style of the plugin. if ($args['styles_default'] === true) { rpwe_custom_styles(); } // If the default style is disabled then use the custom css if it's not empty. if ($args['styles_default'] === false && !empty($args['css'])) { echo '<style>' . $args['css'] . '</style>'; } // Get the posts query. $posts = rpwe_get_posts($args); if ($posts->have_posts()) : // Recent posts wrapper $html = '<div ' . (!empty($args['cssID']) ? 'id="' . sanitize_html_class($args['cssID']) . '"' : '') . ' class="blog-post-list ' . (!empty($args['css_class']) ? '' . sanitize_html_class($args['css_class']) . '' : '') . '">'; $html .= '<div class="blog-post-box">'; while ($posts->have_posts()) : $posts->the_post(); // Thumbnails $thumb_id = get_post_thumbnail_id(); // Get the featured image id. $img_url = wp_get_attachment_url($thumb_id); // Get img URL. // Display the image url and crop using the resizer. $image = rpwe_resize($img_url, $args['thumb_width'], $args['thumb_height'], true); // Start recent posts markup. $html .= '<div class="blog-post-image">'; if ($args['thumb']) : // Check if post has post thumbnail. if (has_post_thumbnail()) : $html .= '<a class="rpwe-img" href="' . esc_url(get_permalink()) . '">'; if ($image) : $html .= '<img class="' . esc_attr($args['thumb_align']) . ' rpwe-thumb" src="' . esc_url($image) . '" alt="' . esc_attr(get_the_title()) . '" height="' . absint($args['thumb_height']) . '" width="' . absint($args['thumb_width']) . '">'; else : $html .= get_the_post_thumbnail( get_the_ID(), array($args['thumb_width'], $args['thumb_height']), array( 'class' => $args['thumb_align'] . ' rpwe-thumb the-post-thumbnail', 'alt' => esc_attr(get_the_title()) ) ); endif; $html .= '</a></div><!-- /.blog-post-image -->'; // If no post thumbnail found, check if Get The Image plugin exist and display the image. elseif (function_exists('get_the_image')) : $html .= get_the_image(array( 'height' => (int) $args['thumb_height'], 'width' => (int) $args['thumb_width'], 'image_class' => esc_attr($args['thumb_align']) . ' rpwe-thumb get-the-image', 'image_scan' => true, 'echo' => false, 'default_image' => esc_url($args['thumb_default']) )); // Display default image. elseif (!empty($args['thumb_default'])) : $html .= sprintf( '<a class="rpwe-img" href="%1$s" rel="bookmark"><img class="%2$s rpwe-thumb rpwe-default-thumb" src="%3$s" alt="%4$s" width="%5$s" height="%6$s"></a>', esc_url(get_permalink()), esc_attr($args['thumb_align']), esc_url($args['thumb_default']), esc_attr(get_the_title()), (int) $args['thumb_width'], (int) $args['thumb_height'] ); endif; endif; $html .= '<div class="blog-post-title"><h3><a href="' . esc_url(get_permalink()) . '" title="' . sprintf(esc_attr__('Permalink to %s', 'recent-posts-widget-extended'), the_title_attribute('echo=0')) . '" rel="bookmark">' . esc_attr(get_the_title()) . '</a></h3></div><!-- /.blog-post-title -->'; if ($args['date']) : $date = get_the_date(); if ($args['date_relative']) : $date = sprintf(__('%s ago', 'recent-posts-widget-extended'), human_time_diff(get_the_date('U'), current_time('timestamp'))); endif; $html .= '<time class="rpwe-time published" datetime="' . esc_html(get_the_date('c')) . '">' . esc_html($date) . '</time>'; elseif ($args['date_modified']) : // if both date functions are provided, we use date to be backwards compatible $date = get_the_modified_date(); if ($args['date_relative']) : $date = sprintf(__('%s ago', 'recent-posts-widget-extended'), human_time_diff(get_the_modified_date('U'), current_time('timestamp'))); endif; $html .= '<time class="rpwe-time modfied" datetime="' . esc_html(get_the_modified_date('c')) . '">' . esc_html($date) . '</time>'; endif; if ($args['comment_count']) : if (get_comments_number() == 0) { $comments = __('No Comments', 'recent-posts-widget-extended'); } elseif (get_comments_number() > 1) { $comments = sprintf(__('%s Comments', 'recent-posts-widget-extended'), get_comments_number()); } else { $comments = __('1 Comment', 'recent-posts-widget-extended'); } $html .= '<a class="rpwe-comment comment-count" href="' . get_comments_link() . '">' . $comments . '</a>'; endif; if ($args['excerpt']) : $html .= '<div class="blog-post-intro">'; $html .= wp_trim_words(apply_filters('rpwe_excerpt', get_the_excerpt()), $args['length'], ' &hellip;'); $html .= '</div><!-- /.blog-post-intro -->'; if ($args['readmore']) : $html .= '<div class="blog-post-link"><a href="' . esc_url(get_permalink()) . '" class="more-link"><span class="icon-chevron-right"></span></a></div><!-- /.blog-post-link --> '; endif; endif; endwhile; $html .= '</div><!-- /.blog-post-box -->'; $html .= '</div><!-- /.blog-post-list -->'; endif; // Restore original Post Data. wp_reset_postdata(); // Allow devs to hook in stuff after the loop. do_action('rpwe_after_loop'); // Return the posts markup. return wp_kses_post($args['before']) . apply_filters('rpwe_markup', $html, $args) . wp_kses_post($args['after']); } /** * The posts query. * * @since 0.0.1 * @param array $args * @return array */ function rpwe_get_posts($args = array()) { // Query arguments. $query = array( 'offset' => $args['offset'], 'posts_per_page' => $args['limit'], 'orderby' => $args['orderby'], 'order' => $args['order'], 'post_type' => $args['post_type'], 'post_status' => $args['post_status'], 'ignore_sticky_posts' => $args['ignore_sticky'], ); // Exclude current post if ($args['exclude_current']) { $query['post__not_in'] = array(get_the_ID()); } // Limit posts based on category. if (!empty($args['cat'])) { $query['category__in'] = $args['cat']; } // Limit posts based on post tag. if (!empty($args['tag'])) { $query['tag__in'] = $args['tag']; } /** * Taxonomy query. * Prop Miniloop plugin by Kailey Lampert. */ if (!empty($args['taxonomy'])) { parse_str($args['taxonomy'], $taxes); $operator = 'IN'; $tax_query = array(); foreach (array_keys($taxes) as $k => $slug) { $ids = explode(',', $taxes[$slug]); if (count($ids) == 1 && $ids['0'] < 0) { // If there is only one id given, and it's negative // Let's treat it as 'posts not in' $ids['0'] = $ids['0'] * -1; $operator = 'NOT IN'; } $tax_query[] = array( 'taxonomy' => $slug, 'field' => 'id', 'terms' => $ids, 'operator' => $operator ); } $query['tax_query'] = $tax_query; } // Allow plugins/themes developer to filter the default query. $query = apply_filters('rpwe_default_query_arguments', $query); // Perform the query. $posts = new WP_Query($query); return $posts; } /** * Custom Styles. * * @since 0.8 */ function rpwe_custom_styles() { ?> <?php }

Als iemand een suggestie heeft, ik ben heel benieuwd!
 
Opgelost, hieronder de php zoals zou moeten zijn.

<?php /** * Various functions used by the plugin. */ /** * Sets up the default arguments. * * @since 0.9.4 */ function rpwe_get_default_args() { $css_defaults = ""; $defaults = array( 'title' => esc_attr__('Recent Posts', 'rpwe'), 'title_url' => '', 'limit' => 5, 'offset' => 0, 'order' => 'DESC', 'orderby' => 'date', 'cat' => array(), 'tag' => array(), 'taxonomy' => '', 'post_type' => array('post'), 'post_status' => 'publish', 'ignore_sticky' => 1, 'exclude_current' => 1, 'excerpt' => false, 'length' => 10, 'thumb' => true, 'thumb_height' => 45, 'thumb_width' => 45, 'thumb_default' => 'http://placehold.it/45x45/f0f0f0/ccc', 'thumb_align' => 'rpwe-alignleft', 'date' => true, 'date_relative' => false, 'date_modified' => false, 'readmore' => false, 'readmore_text' => __('Read More &raquo;', 'recent-posts-widget-extended'), 'comment_count' => false, 'styles_default' => true, 'css' => $css_defaults, 'cssID' => '', 'css_class' => '', 'before' => '', 'after' => '' ); // Allow plugins/themes developer to filter the default arguments. return apply_filters('rpwe_default_args', $defaults); } /** * Outputs the recent posts. * * @since 0.9.4 */ function rpwe_recent_posts($args = array()) { echo rpwe_get_recent_posts($args); } /** * Generates the posts markup. * * @since 0.9.4 * @param array $args * @return string|array The HTML for the random posts. */ function rpwe_get_recent_posts($args = array()) { // Set up a default, empty variable. $html = ''; // Merge the input arguments and the defaults. $args = wp_parse_args($args, rpwe_get_default_args()); // Extract the array to allow easy use of variables. extract($args); // Allow devs to hook in stuff before the loop. do_action('rpwe_before_loop'); // Display the default style of the plugin. if ($args['styles_default'] === true) { rpwe_custom_styles(); } // If the default style is disabled then use the custom css if it's not empty. if ($args['styles_default'] === false && !empty($args['css'])) { echo '<style>' . $args['css'] . '</style>'; } // Get the posts query. $posts = rpwe_get_posts($args); if ($posts->have_posts()) : // Recent posts wrapper $html = '<div ' . (!empty($args['cssID']) ? 'id="' . sanitize_html_class($args['cssID']) . '"' : '') . ' class="blog-post-list ' . (!empty($args['css_class']) ? '' . sanitize_html_class($args['css_class']) . '' : '') . '">'; while ($posts->have_posts()) : $posts->the_post(); // Thumbnails $thumb_id = get_post_thumbnail_id(); // Get the featured image id. $img_url = wp_get_attachment_url($thumb_id); // Get img URL. // Display the image url and crop using the resizer. $image = rpwe_resize($img_url, $args['thumb_width'], $args['thumb_height'], true); // Start recent posts markup. $html .= '<div class="blog-post-box">'; if ($args['thumb']) : // Check if post has post thumbnail. if (has_post_thumbnail()) : $html .= '<div class="blog-post-image"><a class="rpwe-img" href="' . esc_url(get_permalink()) . '">'; if ($image) : $html .= '<img class="' . esc_attr($args['thumb_align']) . ' rpwe-thumb" src="' . esc_url($image) . '" alt="' . esc_attr(get_the_title()) . '" height="' . absint($args['thumb_height']) . '" width="' . absint($args['thumb_width']) . '">'; else : $html .= get_the_post_thumbnail( get_the_ID(), array($args['thumb_width'], $args['thumb_height']), array( 'class' => $args['thumb_align'] . ' rpwe-thumb the-post-thumbnail', 'alt' => esc_attr(get_the_title()) ) ); endif; $html .= '</a></div><!-- /.blog-post-image -->'; // If no post thumbnail found, check if Get The Image plugin exist and display the image. elseif (function_exists('get_the_image')) : $html .= get_the_image(array( 'height' => (int) $args['thumb_height'], 'width' => (int) $args['thumb_width'], 'image_class' => esc_attr($args['thumb_align']) . ' rpwe-thumb get-the-image', 'image_scan' => true, 'echo' => false, 'default_image' => esc_url($args['thumb_default']) )); // Display default image. elseif (!empty($args['thumb_default'])) : $html .= sprintf( '<a class="rpwe-img" href="%1$s" rel="bookmark"><img class="%2$s rpwe-thumb rpwe-default-thumb" src="%3$s" alt="%4$s" width="%5$s" height="%6$s"></a>', esc_url(get_permalink()), esc_attr($args['thumb_align']), esc_url($args['thumb_default']), esc_attr(get_the_title()), (int) $args['thumb_width'], (int) $args['thumb_height'] ); endif; endif; $html .= '<div class="blog-post-title"><h3><a href="' . esc_url(get_permalink()) . '" title="' . sprintf(esc_attr__('Permalink to %s', 'recent-posts-widget-extended'), the_title_attribute('echo=0')) . '" rel="bookmark">' . esc_attr(get_the_title()) . '</a></h3></div><!-- /.blog-post-title -->'; if ($args['date']) : $date = get_the_date(); if ($args['date_relative']) : $date = sprintf(__('%s ago', 'recent-posts-widget-extended'), human_time_diff(get_the_date('U'), current_time('timestamp'))); endif; $html .= '<time class="rpwe-time published" datetime="' . esc_html(get_the_date('c')) . '">' . esc_html($date) . '</time>'; elseif ($args['date_modified']) : // if both date functions are provided, we use date to be backwards compatible $date = get_the_modified_date(); if ($args['date_relative']) : $date = sprintf(__('%s ago', 'recent-posts-widget-extended'), human_time_diff(get_the_modified_date('U'), current_time('timestamp'))); endif; $html .= '<time class="rpwe-time modfied" datetime="' . esc_html(get_the_modified_date('c')) . '">' . esc_html($date) . '</time>'; endif; if ($args['comment_count']) : if (get_comments_number() == 0) { $comments = __('No Comments', 'recent-posts-widget-extended'); } elseif (get_comments_number() > 1) { $comments = sprintf(__('%s Comments', 'recent-posts-widget-extended'), get_comments_number()); } else { $comments = __('1 Comment', 'recent-posts-widget-extended'); } $html .= '<a class="rpwe-comment comment-count" href="' . get_comments_link() . '">' . $comments . '</a>'; endif; if ($args['excerpt']) : $html .= '<div class="blog-post-intro">'; $html .= wp_trim_words(apply_filters('rpwe_excerpt', get_the_excerpt()), $args['length'], ' &hellip;'); $html .= '</div><!-- /.blog-post-intro -->'; if ($args['readmore']) : $html .= '<div class="blog-post-link"><a href="' . esc_url(get_permalink()) . '" class="more-link"><span class="icon-chevron-right"></span></a></div><!-- /.blog-post-link -->'; endif; endif; $html .= '</div><!-- /.blog-post-box -->'; endwhile; $html .= '</div><!-- /.blog-post-list -->'; endif; // Restore original Post Data. wp_reset_postdata(); // Allow devs to hook in stuff after the loop. do_action('rpwe_after_loop'); // Return the posts markup. return wp_kses_post($args['before']) . apply_filters('rpwe_markup', $html, $args) . wp_kses_post($args['after']); } /** * The posts query. * * @since 0.0.1 * @param array $args * @return array */ function rpwe_get_posts($args = array()) { // Query arguments. $query = array( 'offset' => $args['offset'], 'posts_per_page' => $args['limit'], 'orderby' => $args['orderby'], 'order' => $args['order'], 'post_type' => $args['post_type'], 'post_status' => $args['post_status'], 'ignore_sticky_posts' => $args['ignore_sticky'], ); // Exclude current post if ($args['exclude_current']) { $query['post__not_in'] = array(get_the_ID()); } // Limit posts based on category. if (!empty($args['cat'])) { $query['category__in'] = $args['cat']; } // Limit posts based on post tag. if (!empty($args['tag'])) { $query['tag__in'] = $args['tag']; } /** * Taxonomy query. * Prop Miniloop plugin by Kailey Lampert. */ if (!empty($args['taxonomy'])) { parse_str($args['taxonomy'], $taxes); $operator = 'IN'; $tax_query = array(); foreach (array_keys($taxes) as $k => $slug) { $ids = explode(',', $taxes[$slug]); if (count($ids) == 1 && $ids['0'] < 0) { // If there is only one id given, and it's negative // Let's treat it as 'posts not in' $ids['0'] = $ids['0'] * -1; $operator = 'NOT IN'; } $tax_query[] = array( 'taxonomy' => $slug, 'field' => 'id', 'terms' => $ids, 'operator' => $operator ); } $query['tax_query'] = $tax_query; } // Allow plugins/themes developer to filter the default query. $query = apply_filters('rpwe_default_query_arguments', $query); // Perform the query. $posts = new WP_Query($query); return $posts; } /** * Custom Styles. * * @since 0.8 */ function rpwe_custom_styles() { ?> <?php }
 
Status
Niet open voor verdere reacties.
Steun Ons

Nieuwste berichten

Terug
Bovenaan