Mir würden da spontan die Benutzerdefinierten Felder (Custom Fields) einfallen. Die könntest du pro Beitrag pflegen und dann über ein Child-Theme in der Beitragsseite abfragen.
Beiträge von maxe
-
-
i.d.R. liegt es wirklich an einem deaktivierten mod_rewrite. Frag doch am besten noch mal bei deinem Hoster nach.
-
Vielleicht aktualisierst du mal WP 4.5.4 auf 4.6.1 und auch das Enfold Theme 3.5.3 auf 3.8.
Und schau mal, ob die 'entypo-fontello' überhaupt richtig geladen wird. Ich vermute mal, dass es an WWW liegt, wenn die Site eigentlich ohne www läuft:Code<style type='text/css'> @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal; src: url('https://[COLOR="#FF0000"]www.[/COLOR]savinglifetec.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3'); src: url('https://[COLOR="#FF0000"]www.[/COLOR]savinglifetec.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), url('https://[COLOR="#FF0000"]www.[/COLOR]savinglifetec.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), url('https://[COLOR="#FF0000"]www.[/COLOR]savinglifetec.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), url('https://[COLOR="#FF0000"]www.[/COLOR]savinglifetec.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg'); } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; } </style> -
auch hier dicht.
-
Bitte nicht doppelt und 3fach die selben Fragen stellen, ich mach 2 Threads mal dicht.
-
-
gibt ja einige, z.B. https://wordpress.org/plugins/wp-pagenavi/
-
dann mach ich hier mal zu
-
Also wenn nichts im Theme zu finden ist, liegt es vermutlich doch an einem Plugin. Schau da noch mal nach und deaktiviere evtl. noch mal ALLE.
Hast du evtl. ein Cache-Plugin, dann da den Cache auch mal leeren.Sonst musst du vielleicht auch mal den Debug-Modus aktivieren.
-
klar kann ich hier genau das Bsp. aus meinem Link abschreiben:
PHP
Alles anzeigen<div class="posts-kategorie1"> <?php // The Query $query1 = new WP_Query(array('category_name' => 'versammlung', 'posts_per_page' => 3)); if ( $query1->have_posts() ) { // The Loop while ( $query1->have_posts() ) { $query1->the_post(); the_date(); the_post_thumbnail('thumbnail'); //Ausgabe des Vorschaubildes in Thumbnail-Größe the_excerpt(); //Ausgabe Excerpt the_author(); } /* Restore original Post Data * NB: Because we are using new WP_Query we aren't stomping on the * original $wp_query and it does not need to be reset with * wp_reset_query(). We just need to set the post data back up with * wp_reset_postdata(). */ wp_reset_postdata(); } ?> </div> <div class="posts-kategorie1"> <?php /* The 2nd Query (without global var) */ $query2 = new WP_Query('category_name' => 'geburtstage', 'posts_per_page' => 3); if ( $query2->have_posts() ) { // The 2nd Loop while ( $query2->have_posts() ) { $query2->the_post(); the_date(); the_post_thumbnail('thumbnail'); //Ausgabe des Vorschaubildes in Thumbnail-Größe the_excerpt(); //Ausgabe Excerpt the_author(); } // Restore original Post Data wp_reset_postdata(); } ?> </div>War jetzt nicht wirklich schwer, oder? Zumal du doch die Loops schon fast fertig hattest.
-
bei multiplen Loops arbeitest du am besten mit new WP_Query(): https://codex.wordpress.org/Class_Referenc…#Multiple_Loops
-
Woher sollen wir dein Theme kennen?
-
i.d.R. sind für die Fehlermeldung entweder das Theme oder Plugins schuld.
Testweise mal das Theme wechseln und/oder alle Plugins deaktivieren. -
wo, was, wie? Gib mal einen Link zur Problemstelle.
-
WP hat von Haus aus keine Lightbox, also entweder kommt die von Theme oder einem anderen Plugin.
-
doppelpost, closed.
-
Beiträge habe ich editiert und mache dann auch direkt hier mal zu.
-
-
Oder kann das der Hoster zentral auf rewrite off stellen und dann ist es egal wie ich die .htaccess konfiguriere?
Ja, der Hoster kann das mod_rewrite beeinflussen, deshalb ja dort mal nachfragen. -
Ich vermute auch hier ist chown der falsche. Was passiert denn, wenn du testweise mal auf chmod 777 umstellst?