Sieht nach einem Feed-Aggregator aus der einfach alle angemeldeten RSS-Feeds speichert. Dafür braucht man nicht unbedingt Wordpress.
Beiträge von paul-sims
-
-
Wenn du bei deinem Anbieter eine Subdomain anlegen kannst, steht dahinter sicher auch das Ziel dieser Subdomain. Stell das Ziel einfach auf den entsprechenden Pfad zum bsp /zumir/
-
sind die zwei wp-installationen denn auf einem server?
-
PHP
Alles anzeigen<?php /** * @package WordPress * @subpackage Coraline * @since Coraline 1.0 */ ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-above" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'coraline' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'coraline' ) ); ?></div> </div><!-- #nav-above --> <?php endif; ?> <?php /* If there are no posts to display, such as an empty archive page */ ?> <?php if ( ! have_posts() ) : ?> <div id="post-0" class="post error404 not-found"> <h1 class="entry-title"><?php _e( 'Not Found', 'coraline' ); ?></h1> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'coraline' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </div><!-- #post-0 --> <?php endif; ?> <?php // Start the Loop. $options = get_option( 'coraline_theme_options' ); while ( have_posts() ) : the_post(); ?> <?php /* How to display posts in the Gallery category. */ ?> <?php if ( isset( $options['gallery_category'] ) && '0' != $options['gallery_category'] && in_category( $options['gallery_category'] ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class( 'category-gallery' ); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php coraline_posted_on(); ?> </div><!-- .entry-meta --> <div class="entry-content"> <?php if ( post_password_required() ) : ?> <?php the_content(); ?> <?php else : ?> <?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) : $total_images = count( $images ); $image = array_shift( $images ); $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); ?> <div class="gallery-thumb"> <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> </div><!-- .gallery-thumb --> <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'coraline' ), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', $total_images ); ?></em></p> <?php endif; ?> <?php the_excerpt(); ?> <?php endif; ?> </div><!-- .entry-content --> <div class="entry-info"> <span class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></span> <p><a href="<?php echo get_term_link( $options['gallery_category'], 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'coraline' ); ?>"><?php _e( 'More Galleries', 'coraline' ); ?></a></p> <p><?php edit_post_link( __( 'Edit', 'coraline' ), '', '' ); ?></p> </div><!-- .entry-info --> </div><!-- #post-## --> <?php /* How to display posts in the asides category */ ?> <?php elseif ( isset( $options['aside_category'] ) && '0' != $options['aside_category'] && in_category( $options['aside_category'] ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class( 'category-asides' ); ?>> <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?> <div class="entry-summary aside"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content aside"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'coraline' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <div class="entry-info"> <p class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></p> <p><?php coraline_posted_on(); ?></p> <?php edit_post_link( __( 'Edit', 'coraline' ), '', '' ); ?> </div><!-- .entry-info --> </div><!-- #post-## --> <?php /* How to display all other posts. */ ?> <?php else : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php coraline_posted_on(); ?><span class="comments-link"> <span class="meta-sep">|</span> Autor: <a href="<?php the_author_meta('url'); ?>"><?php the_author_meta('display_name'); ?></a> <span class="meta-sep">|</span> <?php comments_popup_link( __( 'Leave a comment', 'coraline' ), __( '1 Comment', 'coraline' ), __( '% Comments', 'coraline' ) ); ?></span> </div><!-- .entry-meta --> <?php if ( is_search() ) : // Display excerpts for search. ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'coraline' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'coraline' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <div class="entry-info"> <p class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></p> <?php if ( count( get_the_category() ) ) : ?> <p class="cat-links"> <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'coraline' ), 'entry-info-prep entry-info-prep-cat-links', get_the_category_list( ', ' ) ); ?> </p> <?php endif; ?> <?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?> <p class="tag-links"> <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'coraline' ), 'entry-info-prep entry-info-prep-tag-links', $tags_list ); ?> </p> <?php endif; ?> <?php edit_post_link( __( 'Edit', 'coraline' ), '<p class="edit-link">', '</p>' ); ?> </div><!-- .entry-info --> </div><!-- #post-## --> <?php comments_template( '', true ); ?> <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?> <?php endwhile; // End the loop. Whew. ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'coraline' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'coraline' ) ); ?></div> </div><!-- #nav-below --> <?php endif; ?>
Alles weitere kost Geld :DHab ich von Function Reference/the author Meta..
-
-
Beschreibe mal bitte näher welcher autor wohin linken soll oder so.
-
Das [FONT=monospace]
[/FONT]
war nur an der falschen stelle und bevor ich jetzt versuche zu erklären wo genau, schmeiss ich lieber gleich den ganzen code hier rein :D[COLOR=#000000][COLOR=#0000BB][/COLOR][COLOR=#007700][/COLOR][COLOR=#0000BB][/COLOR][/COLOR]
-
Ich persönliche arbeite lieber im "HTML"-Modus, da durch das bearbeiten von Text mit dem "WYSIWYG Editor (whatYouSeeIsWhatYouGet) oftmals ungewollte formatierungen entstehen die man meinst nur im HTML-Modus beheben kann.
Also in der Hinsicht kann ich dir leider keinen Editor empfehlen, da ich kein bzw. selten den standart editor benutze.:-o
-
Wenn du das genauer beschreiben könntest wäre toll.
Bekommst ein php error oder passiert garnichs oder ist es wie vorher. -
PHP
Alles anzeigen<?php /** * @package WordPress * @subpackage Coraline * @since Coraline 1.0 */ ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-above" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'coraline' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'coraline' ) ); ?></div> </div><!-- #nav-above --> <?php endif; ?> <?php /* If there are no posts to display, such as an empty archive page */ ?> <?php if ( ! have_posts() ) : ?> <div id="post-0" class="post error404 not-found"> <h1 class="entry-title"><?php _e( 'Not Found', 'coraline' ); ?></h1> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'coraline' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </div><!-- #post-0 --> <?php endif; ?> <?php // Start the Loop. $options = get_option( 'coraline_theme_options' ); while ( have_posts() ) : the_post(); ?> <?php /* How to display posts in the Gallery category. */ ?> <?php if ( isset( $options['gallery_category'] ) && '0' != $options['gallery_category'] && in_category( $options['gallery_category'] ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class( 'category-gallery' ); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php coraline_posted_on(); ?> </div><!-- .entry-meta --> <div class="entry-content"> <?php if ( post_password_required() ) : ?> <?php the_content(); ?> <?php else : ?> <?php $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) ); if ( $images ) : $total_images = count( $images ); $image = array_shift( $images ); $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' ); ?> <div class="gallery-thumb"> <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> </div><!-- .gallery-thumb --> <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'coraline' ), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', $total_images ); ?></em></p> <?php endif; ?> <?php the_excerpt(); ?> <?php endif; ?> </div><!-- .entry-content --> <div class="entry-info"> <span class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></span> <p><a href="<?php echo get_term_link( $options['gallery_category'], 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'coraline' ); ?>"><?php _e( 'More Galleries', 'coraline' ); ?></a></p> <p><?php edit_post_link( __( 'Edit', 'coraline' ), '', '' ); ?></p> </div><!-- .entry-info --> </div><!-- #post-## --> <?php /* How to display posts in the asides category */ ?> <?php elseif ( isset( $options['aside_category'] ) && '0' != $options['aside_category'] && in_category( $options['aside_category'] ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class( 'category-asides' ); ?>> <?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?> <div class="entry-summary aside"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content aside"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'coraline' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <div class="entry-info"> <p class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></p> <p><?php coraline_posted_on(); ?></p> <?php edit_post_link( __( 'Edit', 'coraline' ), '', '' ); ?> </div><!-- .entry-info --> </div><!-- #post-## --> <?php /* How to display all other posts. */ ?> <?php else : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'coraline' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php coraline_posted_on(); ?> - Autor: <?php the_author_posts_link(); ?> - <span class="comments-link"><span class="meta-sep">|</span> <?php comments_popup_link( __( 'Leave a comment', 'coraline' ), __( '1 Comment', 'coraline' ), __( '% Comments', 'coraline' ) ); ?></span> </div><!-- .entry-meta --> <?php if ( is_search() ) : // Display excerpts for search. ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'coraline' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'coraline' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <div class="entry-info"> <p class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></p> <?php if ( count( get_the_category() ) ) : ?> <p class="cat-links"> <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'coraline' ), 'entry-info-prep entry-info-prep-cat-links', get_the_category_list( ', ' ) ); ?> </p> <?php endif; ?> <?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?> <p class="tag-links"> <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'coraline' ), 'entry-info-prep entry-info-prep-tag-links', $tags_list ); ?> </p> <?php endif; ?> <?php edit_post_link( __( 'Edit', 'coraline' ), '<p class="edit-link">', '</p>' ); ?> </div><!-- .entry-info --> </div><!-- #post-## --> <?php comments_template( '', true ); ?> <?php endif; // This was the if statement that broke the loop into three parts based on categories. ?> <?php endwhile; // End the loop. Whew. ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'coraline' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'coraline' ) ); ?></div> </div><!-- #nav-below --> <?php endif; ?>Einfach alles was hier steht in die loop.php speichern. Vorher Backup :D
-
Dann funktioniert es nun wie gewünscht? :-o
bin auch noch blutiger php anfänger drum würde es mich freuden
-
Ich vermute du meinst sowas wie "Recent Comments" und "Recents Posts".
Dann sieht man in der Sidebar zum Beispiel die letzten 5 Beiträge und die letzten 5 Kommentare.
-
Also von einem Wordpress-Editor hab ich jetzt so nichts gehört. Evtl. meinste du den Bereich beim erstellen eines Beitrages? Kannst ja mal sagen was du gerne mit dem Editor machen willst.
-
-
Falsches Forum :D
Als reiner Texteditor empfehle notepad++
Als wenn du tabellen erstellen willst und die auch gleich sehen brauchst du etwas in die richtung wie DreamWeaver
-
Hallo Ursula,
generell würde ich dir empfehlen deine Beiträge zu editeren anstatt jedesmal einen neuen Beitrag zu erstellen. Ich hatte dezente Probleme beim lesen, weil ich als nächsten Beitrag eine Antwort auf dein Hilfegesuch erwaretet hatte.
Zu dem Thema Anriss: Wenn du einen Beitrag/Seite erstellst/bearbeitest gibt es die Funktion "More" (in der Leiste wo du auch fett-schreiben einstellst). Das More-Tag kannst du dann im Text dorthin platzieren, biswohin du deinen Text gekürzt haben willst. An der stelle des More-Tags sollte dann so etwas wie "Weiter..." oder "more..." auftauchen.
Deine anderen Probleme müsstest du noch mal genau schildern die versteh ich leider nicht ganz :-o
-
hm strange :|
evtl. müssen die Bilder "Width: 530 px. Height: 300 px." groß sein. Kannst ja mal testen. Wüsste hier auch nich weiter
-
ZitatAlles anzeigen
Last 5 posts form the selected categoey will be listed as featured at homepage.
The selected category should contain at last 2 posts with images.
How to add images to your featured posts slideshow?
» If you are using WordPress version 2.9 and above: Just set "Post Thumbnail" when adding new post for the posts in selected category above.
» If you are using WordPress version under 2.9 you have to add custom fields in each post on the category you set as featured category. The custom field should be named "featured" and it's value should be full image URL.
In both situation, the image sizes should be: Width: 530 px. Height: 300 px.du musst anscheinend nur die Kategorie setzen wo deine Post erscheinen
Findest du bei "Design -> Theme Options"
-
-
Wenn du bei der aktuellen WP-Version einen Beitrag verfasst, hast du unten rechts die Option einen Beitragsbild zu bestimmen. Diese Bilder sollten dann in der SlideShow landen. Ist dieses Option beim erstellen nicht zu sehen schaue mal oben rechts unter Optionen einblenden ob du die Funktion evtl nicht aktiviert hast.