Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
<?php if(is_page(3)) {?>
<li>
<h2>Texte
</h2>
<?php
$how_many=5; //How many posts do you want to show
require_once('wp-config.php'); // Change this for your path to
wp-config.php file ?>
<?
$news=$wpdb->get_results("SELECT `ID`,`post_title` FROM $wpdb->posts
WHERE `post_type`=\"post\" AND `post_status`=\"publish\" ORDER BY
post_date DESC LIMIT $how_many");
foreach($news as $np){
printf ("<a href=\"%s\">%s</a><br>",
get_permalink($np->ID),$np->post_title);
} ?>
</li>
<?php }?>
$sql = 'SELECT `post_title`,`guid` FROM `wp_posts` ORDER BY `ID` DESC LIMIT 0, 5 ';
$query = mysql_query($sql);
while($row = mysql_fetch_assoc($query))
{
$blog_news = $row['post_title'];
$link = $row['guid'];
$title = $row['post_title'];
echo "<a href=\" . $link . \">" . $title ."</a><br/>";
}
$sql = 'SELECT `ID`,`post_title` FROM `wp_posts` WHERE `post_type`='post' AND `post_status`='publish' ORDER BY post_date DESC LIMIT 0,5"
PHP:$sql = 'SELECT `ID`,`post_title` FROM `wp_posts` WHERE `post_type`='post' AND `post_status`='publish' ORDER BY post_date DESC LIMIT 0,5"
Benutzer zu erst einmal diese SQL Abfrage, damit verhinderst du das Entwürfe oder Artikel die erst in der Zukunft veröffentlicht werden, in deiner Liste auftauchen.
Zu dem wird es richtig sortiert.
Ich habe mir gerade in meinem Blog die Spalte 'guid' näher angeschaut und wie ich feststellte gibt es einen Beitrag der dort einen leeren Inhalt hat. Daher wäre es gut wenn du deinen Tabelle mal prüfst ob auch jeder Beitrag dort die richtige Adresse drin stehen hat.
SELECT id,post_title FROM wp_posts WHERE `post_type="post" AND post_status="publish" ORDER BY post_date DESC LIMIT 0,5