I am trying to add a custom 'Like' button to a WordPress site.
I have added an extra column to the "wp_posts" table called "post_likes".
What I'm struggling with is if there is any way to output this data as part of the standard WordPress Loop?
My code to retrieve info from DB:
function get_articles() {
$articles = array();
$query = mysql_query("SELECT `ID`, `post_title`, `post_likes` FROM `wp_posts`");
while (($row = mysql_fetch_assoc($query)) !== false) {
$articles[] = array(
'ID' => $row['ID'],
'post_title' => $row['post_title'],
'post_likes' => $row['post_likes']
);
}
return $articles;
}
Current code to output this:
<?php
$articles= get_articles();
foreach ($articles as $article) { echo '<p><a href="#">Like</a> <span>', $article['post_likes'], '</span> Like this</p>'; }
?>
But I need to know if there is someway to add this as part of the loop, so I can use thumbnail images, filter by category etc.