Hallo,
ich würde gerne in meine page.php den Code für einen Facebook Like Button einfügen. Dieser soll unter jedem Post erscheinen.
Code für den Facebook-Like-Button:
PHP
<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=450&action=like&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
Allerdings weiß ich nicht genau wo der Code eingesetzt werden muss, dass der Like-Button UNTER dem Beitrag erscheint ... Wenn ich den Code in die Loop einfüge sieht das total zerschossen aus ..... (siehe Bild).
[attach='6953.vB'][/attach]
Könnt ihr mir da weiter helfen?
Hier noch der Code meiner page.php:
PHP
<?php
/**
* Template Name: Musiclounge
*
* Selectable from a dropdown menu on the edit page screen.
*/
?>
<?php include('header-musiclounge.php'); ?>
<?php
/** Themify Default Variables
* @var object */
global $themify;
?>
<?php if(is_front_page() && !is_paged()){ get_template_part( 'includes/header-slider'); } ?>
<!-- layout-container -->
<div id="layout" class="clearfix">
<?php themify_content_before(); //hook ?>
<!-- content -->
<div id="content" class="clearfix">
<?php themify_content_start(); //hook ?>
<?php
/////////////////////////////////////////////
// 404
/////////////////////////////////////////////
?>
<?php if(is_404()): ?>
<h1 class="page-title"><?php _e('404','themify'); ?></h1>
<p><?php _e( 'Page not found.', 'themify' ); ?></p>
<?php endif; ?>
<?php
/////////////////////////////////////////////
// PAGE
/////////////////////////////////////////////
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- page-title -->
<?php if($themify->page_title != "yes"): ?>
<h1 class="page-title"><?php the_title(); ?></h1>
<?php endif; ?>
<!-- /page-title -->
<div class="page-content">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages:','themify').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php edit_post_link(__('Edit','themify'), '[', ']'); ?>
<!-- comments -->
<?php if(!themify_check('setting-comments_pages') && $themify->query_category == ""): ?>
<?php comments_template(); ?>
<?php endif; ?>
<!-- /comments -->
</div>
<!-- /.post-content -->
<?php endwhile; endif; ?>
<?php
/////////////////////////////////////////////
// Query Category
/////////////////////////////////////////////
?>
<?php
///////////////////////////////////////////
// Setting image width, height
///////////////////////////////////////////
if($themify->query_category != ""): ?>
<?php if(themify_get('section_categories') != 'yes'): ?>
<?php query_posts(apply_filters('themify_query_posts_page_args', 'cat='.$themify->query_category.'&posts_per_page='.$themify->posts_per_page.'&paged='.$themify->paged)); ?>
<?php if(have_posts()): ?>
<!-- loops-wrapper -->
<div class="loops-wrapper">
<?php while(have_posts()) : the_post(); ?>
<?php get_template_part('includes/loop', 'query'); ?>
<?php endwhile; ?>
</div>
<!-- /loops-wrapper -->
<?php if ($themify->page_navigation != "yes"): ?>
<?php get_template_part( 'includes/pagination'); ?>
<?php endif; ?>
<?php else : ?>
<?php endif; ?>
<?php else: ?>
<?php $categories = explode(",",str_replace(" ","",$themify->query_category)); ?>
<?php foreach($categories as $category): ?>
<?php $cats = get_categories(array('include'=>$category, 'orderby' => 'id')); ?>
<?php foreach($cats as $cat): ?>
<?php query_posts(apply_filters('themify_query_posts_page_args', 'cat='.$cat->cat_ID.'&posts_per_page='.$themify->posts_per_page.'&paged='.$themify->paged)); ?>
<?php if(have_posts()): ?>
<!-- category-section -->
<div class="category-section clearfix <?php echo $cat->cat_name; ?>-category">
<h3 class="category-section-title"><a href="<?php echo esc_url( get_category_link($cat->cat_ID) ); ?>" title="<?php _e('View more posts', 'themify'); ?>"><?php echo $cat->cat_name; ?></a></h3>
<!-- loops-wrapper -->
<div class="loops-wrapper">
<?php while(have_posts()) : the_post(); ?>
<?php get_template_part('includes/loop', 'query'); ?>
<?php endwhile; ?>
</div>
<!-- /loops-wrapper -->
<?php if ($themify->page_navigation != "yes"): ?>
<?php get_template_part( 'includes/pagination'); ?>
<?php endif; ?>
</div>
<!-- /category-section -->
<?php else : ?>
<?php endif; ?>
<?php endforeach; ?>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
<?php themify_content_end(); //hook ?>
</div>
<!-- /content -->
<?php themify_content_after() //hook; ?>
<?php
/////////////////////////////////////////////
// Sidebar
/////////////////////////////////////////////
if ($themify->layout != "sidebar-none"): get_sidebar(); endif; ?>
</div>
<!-- /layout-container -->
<?php get_footer(); ?>
Alles anzeigen
Grüße
Ryijin