Post and Pages view table bug (with solution)
-
I’ve found out that the table used for the “Post and Pages” does not show correctly because of an HTML error.
The “<TR>” is not included in the code.Because this plugin is not updated since November last year, I’ve came to a solution myself:
Edit the plugin and select the file: luc_posts_pages.php
Search within the code for this line: foreach ($posts as $p)
A few lines below you’ll see a line starting with:
echo “<td>”
Add the HTML tag “<tr>”, then the line will look like this:echo “<tr><td>” . ($p[post_type]==’page’ ? “[page]: “.$p[‘post_title’] : $p[‘post_title’]).”</td>
Update the page and the table will lineup correctly.
The topic ‘Post and Pages view table bug (with solution)’ is closed to new replies.