Mit dem AddThis Plugin (zumindest glaube ich das...): http://wordpress.org/extend/plugins/addthis/
Das habe ich schon getestet. Damit ist das leider so wie ich es haben möchte nicht möglich.
You need to be a member in order to leave a comment
Already have an account? Sign in here.
Sign In NowSign up for a new account in our community. It's easy!
Register a new accountMit dem AddThis Plugin (zumindest glaube ich das...): http://wordpress.org/extend/plugins/addthis/
Das habe ich schon getestet. Damit ist das leider so wie ich es haben möchte nicht möglich.
Mit welchen Plugin kann ich diese 3 Dienste einbinden?
http://img818.imageshack.us/img818/2976/socialc.jpg
Ich habe bereits mind. 5 getestet aber in dieser Form (siehe Bild) war leider nichts dabei :-(
Der Thread ist zwar schon alt, aber genau diese Frage würde mich auch interressieren. Alle Plugins, die ich bisher gesehen habe können die Bilder nur während des Uploads skalieren aber nicht nachträglich.
Die Lösung sollte ganz einfach sein: Musst du nicht einfach den Unterpunkt mit der Maus einrücken?
Oh mann, ja du hast recht. Habe nicht gewusst, dass Drag and Drop dort funktioniert. Danke.
Würde mich echt sehr freuen, wenn sich, das jemand mal anschauen könnte.
Ich benutze dieses Theme und möchte gerne auf meinem Foto Blog ein Dropdown Menü erzeugen. Auf der Seite des Themes steht auch extra:
QuoteDropdown menu capability, editable within Wordpress Nav Menu
Ich habe bereits unter Design > Menüs ein Menü erstellt welches aktuell auch angezeigt wird. Doch obwohl ich bereits untergeordnetet Kategorien angelegt habe bekomme ich kein Dropdown Menü angezeigt.
Also musst du wohl selber eine page.php (Kopie der index.php) anlegen wo du dann the_content() anstelle von the_excerpt() verwendest.
Super. Das hat geklappt. Vielen Dank!
dann schau mal in dein Template für Seiten (page.php) was dort drin steht.
Es gibt nur eine single.php
Hier der Inhalt:
<?php get_header();?>
<div id="content"><?php
if (have_posts()) { while (have_posts()) { the_post();?>
<div <?php post_class('postFrame'); ?>>
<span class="postFrameTop"></span>
<div class="postContent"><?php
the_title('<h2 class="postTitle">'.(is_single() || is_page()? '' : '<a href="'.get_permalink().'">'),(is_single() || is_page()? '' : '</a>').($page >= 2 ? __(" » Page", THEMENAME)." ".$page: "")."</h2>");
if (strtolower($post->post_type) == "post") { ?>
<div class="postMeta">
<span class="postDate"><?php the_date("",__("", THEMENAME));?></span>
<?php
if (comments_open() && !(is_single() || is_page())){
_e(" and has ", THEMENAME);
comments_popup_link(__("no comments yet.", THEMENAME), __("1 comment.", THEMENAME), __( /* xgettext:no-php-format */ "% comments.", THEMENAME),"","");
}
edit_post_link(__("Edit", THEMENAME),'<span class="editMeLink">(',')</span>');?>
</div><?php
} else {
edit_post_link(__("Edit", THEMENAME),'<div class="postMeta"><span class="editMeLink">(', ')</span></div>');
}?>
<div class="postBody"><?php
the_content();
wp_link_pages(array("before" => "<div class=\"pageLinks\">".__("Select a page", THEMENAME).": ", 'after' => "</div>", "next_or_number" => "number", "pagelink" => "<span>%</span>"));?>
<div class="clear"></div>
</div>
<?php
if(strtolower($post->post_type) == "post" ) {?>
<div class="postFooter">
<div class="postCategories">
<strong><?php _e('Kategorien:', THEMENAME)?></strong>
<?php the_category(', ');?>
</div>
<?php
if (function_exists("the_tags"))
the_tags('<div class="postTags"><strong>'.__('Tags:', THEMENAME).'</strong> ',', ','</div>');?>
<div class="clear"></div>
<div class="postNavigation">
<?php previous_post_link('<div class="prevPostLink"><strong>'.__('Vorheriger Artikel', THEMENAME).':</strong> %link</div>','%title',false) ?>
<?php next_post_link('<div class="nextPostLink"><strong>'.__('Nächster Artikel', THEMENAME).':</strong> %link</div>','%title',false) ?>
<div class="clear"></div>
</div>
</div><?php
}
comments_template('/comments.php',true);?>
</div>
<span class="postFrameBottom"></span>
</div><?php
} } else { /* If nothing found the this is what will show. */ ?>
<div class="postFrame">
<span class="postFrameTop"></span>
<div class="postContent">
<h2><?php _e("Sorry", THEMENAME);?>:</h2>
<h3><?php _e("We couldn't find what you were looking for.", THEMENAME);?></h3>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<div style="clear:both;"></div>
</div>
<span class="postFrameBottom"></span>
</div><?php
}
global $wp_query;
if ( $wp_query->max_num_pages > 1 && !is_singular()) {?>
<div id="pageNavigation">
<div id="previousPosts"><?php previous_posts_link(__("« Previous page", THEMENAME));?></div>
<div id="nextPosts"><?php next_posts_link(__("Next page »", THEMENAME));?></div>
</div><?php
}?>
</div>
<?php get_sidebar()?>
<?php get_footer() ?>
Display More
Edit: und eine thecontent.php
<?php
/* I use this a my basis for the content body in pages, post, archives, search results, everywhere basically. Saves me from having to make the same change several times when I need to update something, basically I'm lazy. :-P */
if ("thecontent.php" == basename($_SERVER["SCRIPT_FILENAME"])) die ("Please don't do that.");
$title = get_the_title();
/* If there is no title I miss out most of the header elements. Allows for the posting of images without any of the extra fluff getting in the way.
Title will have page number appended to the end when the page is greater than page 1. The title will be a link except in situations where that
page is the one loaded, no point going in a loop and confusing people.
*/
if ($title) {?>
<span class="header-image"></span>
<div class="post-header"><?php
if (is_single() || is_page()) {
echo ($page >= 2 ? "<div class=\"post-title\"><h2>$title Page $page</h2></div>" : "<div class=\"post-title\"><h2>$title</h2></div>");
} else {
$link = get_permalink();
echo "<div class=\"post-title\"><h2><a href=\"$link\" rel=\"bookmark\">$title</a></h2></div>";
}?>
<?php if ($post->post_type == "post") { ?>
<div class="post-author">
<span class="post-cetegory"><?php _e("Posted in ");the_category(", ");?></span> <?php _e("by");?> <a href="<?php echo get_author_posts_url(get_the_author_ID()); ?>"><?php the_author();?></a>
</div>
<div class="post-date">
<span class="post-month"><?php the_time("M");?></span>
<span class="post-day"><?php the_time("d");?></span>
<span class="post-year"><?php the_time("Y");?></span>
</div>
<?php }?>
</div><?php
} ?>
<div class="post-body"><?php
/* The following reads the attachments mime type and either shows an image centred or launches a flash mp3 player if the file type is mpeg audio. */
if (is_attachment()) {?>
<div class="attachment-data" style="margin-bottom:1em"><?php
$attachmentdetails = get_page($post->ID);
$attachmentmeta = get_post_meta($post->ID, "_wp_attachment_metadata", true);
$filetype = explode("/",$attachmentdetails->post_mime_type);
/* Images should be aligned to the center of the page.*/
if ($filetype[0] == "image") { ?>
<div style="text-align:center"><img src="<?php echo $attachmentdetails->guid;?>" alt="<?php echo $attachmentdetails->post_name;?>" /></div><?php
}
/* The following attaches a flash media player to play the file if the file is an MP3 */
/*elseif ($filetype[0] == "audio" && $filetype[1] == "mpeg") {
?>
<object type="application/x-shockwave-flash" width="400" height="15" data="<?php echo get_bloginfo("template_directory")?>/xspf_player_slim.swf?song_url=<?php echo $attachmentdetails->guid;?>&song_title=<?php the_title(false);?>">
<param name="movie" value="<?php echo get_bloginfo("template_directory")?>/xspf_player_slim.swf?song_url=<?php echo $attachmentdetails->guid;?>&song_title=<?php the_title(false);?>" />
</object><?php
} */
?>
</div><?php
previous_post_link(__("File attached to")." %link","%title",false);
}
/* Finally the content */
the_content();
global $multipage;
/* The following allows me to avoid me cluttering up the place with unneeded tag and allows me to style things up as I see fit. Can't pass quotes inside wp_link_pages so have to do it this way. */
if ($multipage) { ?>
<div class="page-links"><strong><?php _e("Select page");?>: </strong>
<?php wp_link_pages("before=&after=&pagelink=<span>%</span>");?>
</div><?php
}
/* Make sure tagging is available before we go on. */
if (function_exists("get_the_tags")) {
$posttags = get_the_tags();
if ($posttags) { /* Not that we know tagging is availavle lets see if there are any tags, only if there are will we add the needed mark up. */?>
<div class="tag-cloud-links">
<span class="tag-cloud-links-top"></span>
<div class="tag-cloud-links-body">
<strong><?php _e("Tagged as: ");?></strong><?php
$x = 1; // Put a comma at the end of each tag if it is not the last.
foreach($posttags as $tag) {
echo "<a href=\"".get_tag_link($tag->term_id)."\">{$tag->name}</a>".(count($posttags) != $x ? ", " : "");
$x++;
}?>
</div>
<span class="tag-cloud-links-bottom"></span>
</div><?php
}
}?>
<div class="clear"></div>
</div>
<div class="post-footer"><?php
/*Show the trackback link for Pages and posts. */
if (pings_open() && !is_attachment()) {?>
<span class="trackback">
<a href="<?php trackback_url() ?>" rel="trackback"><?php _e("TrackBack Address.");?></a>
</span><?php
}?><?php
edit_post_link(__("Edit this entry."),"<span class=\"edit-post\">","</span>"); ?><?php
/* Show the link to the comments if commenting is allowed otherwise show nothing, no point telling people what is not allowed. */
if (comments_open() && !(is_single() || is_page())) {
echo "<span class=\"comment-pop-link\">";
comments_popup_link(__("No Comments yet")." »", __("1 Comment")." »", __("% Comments »"));
echo "</span>";
}?>
</div>
<?php comments_template(); /* Call comments template which will check that if it is needed or not. */?>
Display More
Aktuell werden bei mir Seiten nicht vollständig angezeigt sondern nur als excerpt dargestellt ohne die Möglichkeit die volle Seite aufrufen zu können. Ich benutze diesen code in der index.php
<?php the_excerpt('<span class="readmore">'.__('Read the rest of this entry »',TEMPLATE_DOMAIN).'</span>'); ?>
Eigentlich möchte ich aber Seiten vollständig anzeigen lassen und Beiträge mit einem excerpt darstellen.
Würde mich über Hilfe sehr freuen.
Bei mir lag es am Plugin Category Visibility-iPeat Rev. Beim Klick auf eine Kategorie wurden keine Artikel gelistet und es kam die Meldung: "No posts found. Try a different search?"
Sobald dieses deaktiviert war, lief alles wieder.
Danke, dass hat mir geholfen.
Hallo,
ich möchte, dass Links nicht auf der Blog Startseite angezeigt werden sondern nur, wenn man den Artikel aufruft. Geht das irgendwie?
P.S.: Ich lasse in der Regel nur die ersten 100 Wörter eines Beitrags anzeigen und benutze dann den more-Tag.
Hallo!
in WP 3.01 Design -> "Menüs" kann man ja auch die Kategorien hinzufügen.
Allerdings werden die Unterkategorien nicht als solche gekennzeichet:
Kategorie
Unterkategorien
Unterkategorien
Unterkategorien
Kategorie
Kategorie
Unterkategorien
Kategorie
Ist das gewollt? Gibt es dafür eine Lösung?
Geh auf die Einstellung des Plugins "Recent Comments" und dort auf Instructions. Dann findest du folgenden Hinweis:
Quote%comment_dateThe date, when the comment was posted in the style you configured as default date format.
Die Option findest du also unter "Einstellungen" -> "Allgemein"
Danke für deine Antwort, aber das funktioniert leider nicht.
Kann man analog zu diesem Beispiel auch Code ausgeben lassen, wenn die Seite ein bestimmtes Wort in der URL hat?
<?php if( is_paged("impressum") ) { echo "<meta name=\"robots\" content=\"noindex,follow\" />"; } ?>
Beispielsweise, wenn ich den Code im Quelltext folgender Url ausgeben will:
domain.de/tag/beispiel/
Subscribe to Double-Opt-In Comments kann es doch: http://wordpress.org/extend/plugins…n-comments/faq/
Danke. Werde das mal testen.
Gruß
Ich habe ein entsprechendes Plugin heute gefunden:
http://wordpress.org/extend/plugins…g-field-plugin/
Werde mal schauen was das taugt und ob ich aus den 5 Sternen auch 10 machen kann. Wenn jmd. noch ein andere Plugin kennt wäre es auf jeden Fall super.
Update:
Leider funktioniert es auf meinem Blog nicht. Siehe Screenshot im Anhang.
Was genau ist gemeint mit:
QuoteEnsure that your comments.php theme file has its form id set to commentform
Ich möchte nicht, dass User Kommentare bewerten können. Sondern sie sollten die Möglichkeit bekommen, zusammen mit ihrem Kommentar-Text in einem extra Feld eine Bewertung zum Artikel/Beitrag abzugeben.
Also nach dem Schema:
Name: ...
E-Mail: ...
Homepage: ...
Bewertung: ...
Man soll also im nachhinein sehen können, wie viele Punkte ein Kommentator dem Beitrag gegeben hat.
Das WP-PostRating und das GD Star Rating Plugin kenne ich bereits. Damit kann man das aber nicht umsetzten.