Dónde está el archivo my-hacks.php en Wordpress?

varuk

He visto un post que dice que para poner los últimos comentarios hay que poner esto en el archivo my-hacks.php

<?php

function last_comments() {
global $tableposts, $tablecomments;
$query = ("SELECT ID, post_title, comment_author, comment_date, comment_id
FROM $tableposts, $tablecomments WHERE
$tableposts.ID=$tablecomments.comment_post_ID ORDER BY
$tablecomments.comment_date DESC LIMIT 5");
$result = mysql_query($query);

while ($data = mysql_fetch_row($result)) {
echo stripslashes("$data[2] en <a
href=\"$siteurl/index.php?p=$data[0]#comment-$data[4]\">$data[1]</a> <br>\n");
}
}

?>

Y luego se pone esto:

<?php last_comments();?

Mi duda es ¿Dónde está el archivo my-hacks.php?

Usuarios habituales

  • varuk