سلام دوستان
من یک قالب با آرتیستیر ساختم
حالا میخوام از افزونه هایی مثل i like this یا wp-postview استفاده کنم
این افزونه ها یک کد خاص میدن که وقتی تو قالب میذارم ارور میده
یعنی کلا تو قالب نباید کد php گذاشت
حالا من باید این کد ها رو کجا و چجوری بذارم تا جایی که میخوام نمایش داده بشه
این کد i like this
<?php if(function_exists(getILikeThis)) getILikeThis('get'); ?>
اینم کد Post Views
<li><a href="%POST_URL%" title="%POST_TITLE%">%POST_TITLE%</a> - %VIEW_COUNT% views</li>
اینم یه قسمت از کد ایندکس قالب
<?php
get_sidebar('top');
global $post;
if (have_posts()){
while (have_posts())
{
the_post();
art_post_wrapper(
array(
'id' => art_get_post_id(),
'class' => art_get_post_class(),
'thumbnail' => art_get_post_thumbnail(),
'title' => '<a href="'.get_permalink($post->ID).'" rel="bookmark" title="'.get_the_title().'">'.get_the_title(). '</a>',
'before' => art_get_metadata_icons('date,author,edit', 'header'),
'content' => art_get_excerpt(), // 'content' => 'My post content',
'after' => art_get_metadata_icons('category,tag', 'footer')
)
);
}
art_pagination();// previous_posts_link | next_posts_link
} else {
art_post_wrapper(
array(
'title' => __('Not Found', THEME_NS),
'content' => '<p class="center">'
.__( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', THEME_NS)
. '</p>' . "\r\n" . art_get_search()
)
);
}
get_sidebar('bottom');
?>