<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Felder Archiv - Homepage nach Preis - Webseite erstellen lassen</title>
	<atom:link href="https://homepage-nach-preis.de/wort/felder/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>★ Responsive Webdesigner Homepage erstellen lassen, bereits ab 299 Euro professionelle Webseite. ✓ Google-Optimiert ✓ Mobil-Optimiert &#124; Webdesign &#38; Seo</description>
	<lastBuildDate>Thu, 23 May 2024 15:13:45 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://homepage-nach-preis.de/wp-content/uploads/2021/02/cropped-icon-150x150.png</url>
	<title>Felder Archiv - Homepage nach Preis - Webseite erstellen lassen</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Custom Felder bei WooCommerce Produkte</title>
		<link>https://homepage-nach-preis.de/2023/05/27/custom-felder-bei-woocommerce-produkte/</link>
					<comments>https://homepage-nach-preis.de/2023/05/27/custom-felder-bei-woocommerce-produkte/#respond</comments>
		
		<dc:creator><![CDATA[Homepage-nach-Preis]]></dc:creator>
		<pubDate>Sat, 27 May 2023 13:21:50 +0000</pubDate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[anzeigen]]></category>
		<category><![CDATA[Felder]]></category>
		<category><![CDATA[Informationen]]></category>
		<category><![CDATA[Produkt]]></category>
		<category><![CDATA[Shortcode]]></category>
		<category><![CDATA[Woocommerce]]></category>
		<guid isPermaLink="false">https://homepage-nach-preis.de/?p=7673</guid>

					<description><![CDATA[<p>Individuelle WooCommerce Input &#038; Output Felder erzeugen Dieser Code erweitert die WooCommerce Produktseiten mit einem individuellen Eingabe-Text-Feld. Die eingegebenen Daten werden anschließend im Frontend der Produktseite ausgegeben. Der Code muss in die Functions.php, im Hauptverzeichnis des WordPress-Themes, eingefügt werden. Funktionsumfang: &#8211; Erzeugt ein Text-Input-Feld im Backend der WooCommerce Produkte (global, bei allen Produkten) &#8211; Speichert die Daten des Input-Feldes bei Aktualisierung des Produktes (Getrennte Daten für jedes Produkt) &#8211; Anzeige der gespeicherten Daten im Frontend des WooCommerce Produktes &#8212; Anzeige standardmäßig direkt über dem Warenkorb-Button /** * Custom Field / Info in a Woocommerce Product * @since 1.0.0 */ /** * Display the custom field on the front end of a Woocommerce product * @since 1.0.0 */ function hnp_display_custom_field_1() { global $post; // Check for the custom field value $product = wc_get_product($post-&#x3E;ID); $title = $product-&#x3E;get_meta(&#x27;hnp_custom_text_field_title_1&#x27;); if ($title) { // Only display our field if we&#x27;ve got a value for the field title printf(&#x27;%s&#x27;, esc_html($title)); } } add_action(&#x27;woocommerce_before_add_to_cart_button&#x27;, &#x27;hnp_display_custom_field_1&#x27;); /** * Create the custom text input field in the Backend of a Woocommerce Product * @since 1.0.0 */ function hnp_hnp_create_custom_field_1() { $args = array( &#x27;id&#x27; =&#x3E; &#x27;hnp_custom_text_field_title_1&#x27;, &#x27;label&#x27; =&#x3E; __(&#x27;Custom Field&#x27;, &#x27;hnp&#x27;) , &#x27;class&#x27; =&#x3E; &#x27;hnp-custom-field&#x27;, &#x27;desc_tip&#x27; =&#x3E; true, &#x27;description&#x27; =&#x3E;....</p>
<p>Der Beitrag <a rel="nofollow" href="https://homepage-nach-preis.de/2023/05/27/custom-felder-bei-woocommerce-produkte/">Custom Felder bei WooCommerce Produkte</a> erschien zuerst auf <a rel="nofollow" href="https://homepage-nach-preis.de">Homepage nach Preis - Webseite erstellen lassen</a>. Geschrieben von <a rel="nofollow" href="https://homepage-nach-preis.de/author/homepageadmin/">Homepage-nach-Preis</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Individuelle WooCommerce Input &#038; Output Felder erzeugen</h3>
<p>Dieser Code erweitert die WooCommerce Produktseiten mit einem individuellen Eingabe-Text-Feld. Die eingegebenen Daten werden anschließend im Frontend der Produktseite ausgegeben. Der Code muss in die Functions.php, im Hauptverzeichnis des WordPress-Themes, eingefügt werden. </p>
<p><strong>Funktionsumfang:</strong></p>
<p>&#8211; Erzeugt ein Text-Input-Feld im Backend der WooCommerce Produkte (global, bei allen Produkten)</p>
<p>&#8211; Speichert die Daten des Input-Feldes bei Aktualisierung des Produktes (Getrennte Daten für jedes Produkt)</p>
<p>&#8211; Anzeige der gespeicherten Daten im Frontend des WooCommerce Produktes<br />
&#8212; Anzeige standardmäßig direkt über dem Warenkorb-Button</p>
<pre>


/**
 * Custom Field / Info in a Woocommerce Product
 * @since 1.0.0
 */

/**
 * Display the custom field on the front end of a Woocommerce product
 * @since 1.0.0
 */

function hnp_display_custom_field_1()
{
    global $post;
    // Check for the custom field value
    $product = wc_get_product($post-&#x3E;ID);
    $title = $product-&#x3E;get_meta(&#x27;hnp_custom_text_field_title_1&#x27;);
    if ($title)
    {
        // Only display our field if we&#x27;ve got a value for the field title
        printf(&#x27;%s&#x27;, esc_html($title));
    }
}
add_action(&#x27;woocommerce_before_add_to_cart_button&#x27;, &#x27;hnp_display_custom_field_1&#x27;);

/**
 * Create the custom text input field in the Backend of a Woocommerce Product
 * @since 1.0.0
 */

function hnp_hnp_create_custom_field_1()
{
    $args = array(
        &#x27;id&#x27; =&#x3E; &#x27;hnp_custom_text_field_title_1&#x27;,
        &#x27;label&#x27; =&#x3E; __(&#x27;Custom Field&#x27;, &#x27;hnp&#x27;) ,
        &#x27;class&#x27; =&#x3E; &#x27;hnp-custom-field&#x27;,
        &#x27;desc_tip&#x27; =&#x3E; true,
        &#x27;description&#x27; =&#x3E; __(&#x27;Enter the title of your custom text field.&#x27;, &#x27;chnp&#x27;) ,
    );
    woocommerce_wp_text_input($args);
}
add_action(&#x27;woocommerce_product_options_general_product_data&#x27;, &#x27;hnp_hnp_create_custom_field_1&#x27;);

/**
 * Save the custom field
 * @since 1.0.0
 */
function hnp_save_custom_field_1($post_id)
{
    $product = wc_get_product($post_id);
    $title = isset($_POST[&#x27;hnp_custom_text_field_title_1&#x27;]) ? $_POST[&#x27;hnp_custom_text_field_title_1&#x27;] : &#x27;&#x27;;
    $product-&#x3E;update_meta_data(&#x27;hnp_custom_text_field_title_1&#x27;, sanitize_text_field($title));
    $product-&#x3E;save();
}
add_action(&#x27;woocommerce_process_product_meta&#x27;, &#x27;hnp_save_custom_field_1&#x27;);




</pre>
<p>Wenn im Backend keine Daten im Input-Feld eingetragen wurden, ist die Funktion und die Frontend-Ausgabe nicht aktiv. Somit kann entschieden werden, bei welchen Produkten die Funktion aktiviert und ausgegeben wird.<br />
Information: Es sollte mehr als ein Feld pro Produkt genutzt werden? Dazu muss lediglich die Zahl &#8220;1&#8221; im kompletten Code zu &#8220;2&#8221; geändert werden. Und der Code ein zweites Mal in die Funktions.php eingefügt werden. Der Code kann beliebig oft genutzt werden, sofern jeweils die Zahl pro Nutzung fortlaufend geändert wird.</p>
<p><strong>Erweiterung 1: </strong><br />
Sollte die Frontend-Anzeige noch mit einem Eingabefeld sein, wird Zeile 22: </p>
<pre>printf(&#x27;%s&#x27;, esc_html($title));</pre>
<p>mit diesem Code ausgetauscht: </p>
<pre>printf(&#x27;&#x3C;div class=&#x22;hnp-custom-field-wrapper&#x22;&#x3E;&#x3C;label for=&#x22;hnp-title-field&#x22;&#x3E;%s&#x3C;/label&#x3E;&#x3C;input type=&#x22;text&#x22; id=&#x22;hnp-title-field&#x22; name=&#x22;hnp-title-field&#x22; value=&#x22;&#x22;&#x3E;&#x3C;/div&#x3E;&#x27;, esc_html( $title ));</pre>
<p><strong>Individualisierung 1: </strong><br />
Sollte die Ausgabe des Inputs nicht über dem Warenkorb-Button sein, sondern an einer anderen Position, muss der WooCommerce Hook in Zeile 25</p>
<pre>add_action(&#x27;woocommerce_before_add_to_cart_button&#x27;, &#x27;hnp_display_custom_field_1&#x27;);</pre>
<p>ausgetauscht werden.</p>
<p><strong>Weitere Hooks / Platzierungen (von oben nach unten): </strong></p>
<p>Hook 1: Vor dem Content des Produktes: </p>
<pre>woocommerce_before_single_product</pre>
<p>Hook 2: Vor dem Content des Produktes 2: </p>
<pre>woocommerce_before_single_product_summary</pre>
<p>Hook 3: Nach dem Titel / der Produktüberschrift: </p>
<pre>woocommerce_single_product_summary</pre>
<p>Hook 5: Nach der Kurzbeschreibung:</p>
<pre>woocommerce_before_add_to_cart_form</pre>
<p>Hook 6: Vor den Variationen:</p>
<pre>woocommerce_before_variations_form</pre>
<p>Hook 7: Nach den Variationen:</p>
<pre>woocommerce_before_add_to_cart_button</pre>
<p>Hook 8: Nach den Variationen 2:</p>
<pre>woocommerce_before_single_variation</pre>
<p>Hook 9: Nach der Single Variation:</p>
<pre>woocommerce_single_variation</pre>
<p>Hook 10: Vor der Anzahl-Auswahl:</p>
<pre>woocommerce_before_add_to_cart_quantity</pre>
<p>Hook 11: Nach der Anzahl-Auswahl:</p>
<pre>woocommerce_after_add_to_cart_quantity</pre>
<p>Hook 12: Nach dem Warenkorb Button 1:</p>
<pre>woocommerce_after_single_variation</pre>
<p>Hook 13: Nach dem Warenkorb Button 2:</p>
<pre>woocommerce_after_add_to_cart_button</pre>
<p>Hook 14: Nach dem Warenkorb Button 3:</p>
<pre>woocommerce_after_variations_form</pre>
<p>Hook 15: Nach dem Warenkorb Button 4:</p>
<pre>woocommerce_after_add_to_cart_form</pre>
<p>Hook 16: Vor der Produkt Meta: </p>
<pre>woocommerce_product_meta_start</pre>
<p>Hook 17: Nach der Produkt Meta: </p>
<pre>woocommerce_product_meta_end</pre>
<p>Hook 18: Share / Teilen Area: </p>
<pre>woocommerce_share</pre>
<p>Hook 19: Unter den Produkt-Fotos: </p>
<pre>woocommerce_product_thumbnails</pre>
<p>Hook 20: Am Ende des Produktes: </p>
<pre>woocommerce_after_single_product_summary</pre>
<p>Je nach Theme kann es sein, dass nicht alle Hooks im Design integriert sind oder auch an anderen Positionen angezeigt werden. Durch Ausprobieren oder Auslesen des Theme-Codes sollte aber eine passende Position gefunden werden.</p>
<p><strong>Eigenen Hook erstellen: </strong><br />
Sollten die WooCommerce Standard-Hooks nicht die passende Position bereitstellen, muss ein individueller Hook erstellt werden.</p>
<p>Dazu wird die Zeile 25 auf einen individuellen Hook-Tag geändert:</p>
<pre>add_action(&#x27;hnp_custom_hook_1&#x27;, &#x27;hnp_display_custom_field_1&#x27;);</pre>
<p>Der Hook kann nun in einer gewünschten Stelle im Design eingebunden werden, durch diesen Code:</p>
<pre>&#x3C;?php do_action(&#x27;hnp_custom_hook_1&#x27;);?&#x3E;</pre>
<p>Falls der PhP Tag bereits offen ist: </p>
<pre>do_action(&#x27;hnp_custom_hook_1&#x27;);</pre>
<p><strong>Shortcode anstatt Hook nutzen</strong><br />
Sollte die Funktion nicht automatisch durch einen Hook eingebunden werden, sondern durch ein Shortcode, wird die &#8220;Add Action&#8221; Funktion aus Zeile 25 entfernt und zudem eine Shortcode-Funktion erstellt. Der fertige Code sieht folgend aus:</p>
<pre>
/**
 * Custom Field / Info in a Woocommerce Product
 * @since 1.0.0
 */

/**
 * Display the custom field on the front end of a Woocommerce product
 * @since 1.0.0
 */

function hnp_display_custom_field_1()
{
    global $post;
    // Check for the custom field value
    $product = wc_get_product($post-&#x3E;ID);
    $title = $product-&#x3E;get_meta(&#x27;hnp_custom_text_field_title_1&#x27;);
    if ($title)
    {
        // Only display our field if we&#x27;ve got a value for the field title
        printf(&#x27;%s&#x27;, esc_html($title));
    }
}

/**
 * Create the custom text input field in the Backend of a Woocommerce Product
 * @since 1.0.0
 */

function hnp_hnp_create_custom_field_1()
{
    $args = array(
        &#x27;id&#x27; =&#x3E; &#x27;hnp_custom_text_field_title_1&#x27;,
        &#x27;label&#x27; =&#x3E; __(&#x27;Custom Input&#x27;, &#x27;hnp&#x27;) ,
        &#x27;class&#x27; =&#x3E; &#x27;hnp-custom-field&#x27;,
        &#x27;desc_tip&#x27; =&#x3E; true,
        &#x27;description&#x27; =&#x3E; __(&#x27;Enter the title of your custom text field.&#x27;, &#x27;chnp&#x27;) ,
    );
    woocommerce_wp_text_input($args);
}
add_action(&#x27;woocommerce_product_options_general_product_data&#x27;, &#x27;hnp_hnp_create_custom_field_1&#x27;);

/**
 * Save the custom field
 * @since 1.0.0
 */
function hnp_save_custom_field_1($post_id)
{
    $product = wc_get_product($post_id);
    $title = isset($_POST[&#x27;hnp_custom_text_field_title_1&#x27;]) ? $_POST[&#x27;hnp_custom_text_field_title_1&#x27;] : &#x27;&#x27;;
    $product-&#x3E;update_meta_data(&#x27;hnp_custom_text_field_title_1&#x27;, sanitize_text_field($title));
    $product-&#x3E;save();
}
add_action(&#x27;woocommerce_process_product_meta&#x27;, &#x27;hnp_save_custom_field_1&#x27;);

/**
 * Custom Shortcode
 * @since 1.0.0
 */


function hnp_custom_short1(){
    return hnp_display_custom_field_1();
}

add_shortcode(&#x27;hnp_custom_shortcode_1&#x27;, &#x27;hnp_custom_short1&#x27;); 



</pre>
<p>Auch diese Funktion kann mehrfach genutzt werden, sofern die Zahl &#8220;1&#8221; aus dem kompletten Code ausgetauscht wird. Das Shortcode für die Frontend-Anzeige ist:</p>
<pre>[hnp_custom_shortcode_1]</pre>
<p>Das Shortcode kann in Widgets, Produktbeschreibungen, Texteditoren oder bei anderen Nutzungsmöglichkeiten (z.B. Pagebuildern) genutzt werden. Sollte das Shortcode in eine HTML-Datei eingefügt werden, wäre der passende Code: </p>
<pre>&#x3C;?php echo do_shortcode(&#x27;[hnp_custom_shortcode_1]&#x27;); ?&#x3E;</pre>
<p>Sollte das Shortcode in eine PHP Datei (mit geöffneten PHP Tag) eingebunden werden, wäre der Code: </p>
<pre>echo do_shortcode(&#x27;[hnp_custom_shortcode_1]&#x27;); </pre>
<p><strong>Weitere Möglichkeiten: </strong><br />
Es könnten auch Container, Bilder oder andere HTML Tags für das Frontend eingebunden werden, indem Zeile 25 erweitert wird:</p>
<pre>printf(&#x27;%s&#x27;, esc_html($title));</pre>
<p>Dieser Tag übergibt die eingetragenen Daten des Backends:</p>
<pre>%s</pre>
<p>Hierbei ein Code mit zusätzlich einem Bild und in einem Container: </p>
<pre>  printf(&#x27;&#x3C;div class=&#x22;hnp-container_1&#x22;&#x3E;&#x3C;h3&#x3E;&#xDC;berschrift:&#x3C;/h3&#x3E;&#x3C;p&#x3E;%s&#x3C;/p&#x3E;&#x3C;br&#x3E;&#x3C;img src=&#x22;www.url_zum_bild&#x22; alt=&#x22;alt_tag&#x22; /&#x3E;&#x3C;/div&#x3E;&#x27;, esc_html($title));</pre>
<p>Wenn der Input zusätzlich an die Warenkorbdaten übertragen werden sollen, wäre dies so möglich: </p>
<pre>

/**
 * Custom Field / Info in a Woocommerce Product
 * @since 1.0.0
 */

/**
 * Display the custom field on the front end of a Woocommerce product
 * @since 1.0.0
 */
function hnp_display_custom_field_1() {
    global $post;
    // Check for the custom field value
    $product = wc_get_product($post-&#x3E;ID);
    $title = $product-&#x3E;get_meta(&#x27;hnp_custom_text_field_title_1&#x27;);
    if ($title) {
        // Only display our field if we&#x27;ve got a value for the field title
        printf(&#x27;%s&#x27;, esc_html($title));
    }
}
add_action(&#x27;woocommerce_before_add_to_cart_button&#x27;, &#x27;hnp_display_custom_field_1&#x27;);

/**
 * Create the custom text input field in the Backend of a Woocommerce Product
 * @since 1.0.0
 */
function hnp_hnp_create_custom_field_1() {
    $args = array(
        &#x27;id&#x27; =&#x3E; &#x27;hnp_custom_text_field_title_1&#x27;,
        &#x27;label&#x27; =&#x3E; __(&#x27;Custom Field&#x27;, &#x27;hnp&#x27;),
        &#x27;class&#x27; =&#x3E; &#x27;hnp-custom-field&#x27;,
        &#x27;desc_tip&#x27; =&#x3E; true,
        &#x27;description&#x27; =&#x3E; __(&#x27;Enter the title of your custom text field.&#x27;, &#x27;hnp&#x27;),
    );
    woocommerce_wp_text_input($args);
}
add_action(&#x27;woocommerce_product_options_general_product_data&#x27;, &#x27;hnp_hnp_create_custom_field_1&#x27;);

/**
 * Save the custom field
 * @since 1.0.0
 */
function hnp_save_custom_field_1($post_id) {
    $product = wc_get_product($post_id);
    $title = isset($_POST[&#x27;hnp_custom_text_field_title_1&#x27;]) ? $_POST[&#x27;hnp_custom_text_field_title_1&#x27;] : &#x27;&#x27;;
    $product-&#x3E;update_meta_data(&#x27;hnp_custom_text_field_title_1&#x27;, sanitize_text_field($title));
    $product-&#x3E;save();
}
add_action(&#x27;woocommerce_process_product_meta&#x27;, &#x27;hnp_save_custom_field_1&#x27;);

/**
 * Add custom field value to cart item data
 * @since 1.0.0
 */
function hnp_add_custom_field_to_cart_item($cart_item_data, $product_id) {
    $product = wc_get_product($product_id);
    $custom_field_value = $product-&#x3E;get_meta(&#x27;hnp_custom_text_field_title_1&#x27;);

    if (!empty($custom_field_value)) {
        $cart_item_data[&#x27;hnp_custom_text_field_title_1&#x27;] = $custom_field_value;
    }

    return $cart_item_data;
}
add_filter(&#x27;woocommerce_add_cart_item_data&#x27;, &#x27;hnp_add_custom_field_to_cart_item&#x27;, 10, 2);

/**
 * Display custom field value in the cart
 * @since 1.0.0
 */
function hnp_display_custom_field_in_cart($item_data, $cart_item) {
    if (isset($cart_item[&#x27;hnp_custom_text_field_title_1&#x27;])) {
        $item_data[] = array(
            &#x27;name&#x27; =&#x3E; __(&#x27;Custom Field&#x27;, &#x27;hnp&#x27;),
            &#x27;value&#x27; =&#x3E; $cart_item[&#x27;hnp_custom_text_field_title_1&#x27;]
        );
    }

    return $item_data;
}
add_filter(&#x27;woocommerce_get_item_data&#x27;, &#x27;hnp_display_custom_field_in_cart&#x27;, 10, 2);

/**
 * Save custom field value in cart item meta
 * @since 1.0.0
 */
function hnp_save_custom_field_in_cart_item($item_id, $values, $cart_item_key) {
    if (isset($values[&#x27;hnp_custom_text_field_title_1&#x27;])) {
        wc_add_order_item_meta($item_id, &#x27;hnp_custom_text_field_title_1&#x27;, $values[&#x27;hnp_custom_text_field_title_1&#x27;]);
    }
}
add_action(&#x27;woocommerce_add_order_item_meta&#x27;, &#x27;hnp_save_custom_field_in_cart_item&#x27;, 10, 3);

/**
 * Display custom field value in order items
 * @since 1.0.0
 */
function hnp_display_custom_field_in_order_items($item_id, $item, $order) {
    if ($meta_value = wc_get_order_item_meta($item_id, &#x27;hnp_custom_text_field_title_1&#x27;, true)) {
        echo &#x27;&#x3C;p&#x3E;&#x3C;strong&#x3E;&#x27; . __(&#x27;Custom Field:&#x27;, &#x27;hnp&#x27;) . &#x27;&#x3C;/strong&#x3E; &#x27; . esc_html($meta_value) . &#x27;&#x3C;/p&#x3E;&#x27;;
    }
}
add_action(&#x27;woocommerce_order_item_meta_end&#x27;, &#x27;hnp_display_custom_field_in_order_items&#x27;, 10, 3);


</pre>
<p>Zu beachten ist, dass das Backend-Feld nur mit Text (ohne Code) gefüllt werden sollte, ansonsten könnten Fehler erzeugt werden. Deswegen sollten HTML-Codes ausschließlich über die HTML / PHP Dateien eingebunden werden.<br />
</p>
<h5>Sie wurden gehackt oder Ihre Webseiten mit Viren/Malware infiziert? Wir säubern und schützen Ihre Webseite: <a  href="https://homepage-nach-preis.de/webseite-gehackt-viren-reinigung/" title="Webseite gehackt? Antivirus Service"> <span style="color:#efaa15;">→ Webseiten-Anti-Virus-Service</span></a></h5>
<p>Der Beitrag <a rel="nofollow" href="https://homepage-nach-preis.de/2023/05/27/custom-felder-bei-woocommerce-produkte/">Custom Felder bei WooCommerce Produkte</a> erschien zuerst auf <a rel="nofollow" href="https://homepage-nach-preis.de">Homepage nach Preis - Webseite erstellen lassen</a>. Geschrieben von <a rel="nofollow" href="https://homepage-nach-preis.de/author/homepageadmin/">Homepage-nach-Preis</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://homepage-nach-preis.de/2023/05/27/custom-felder-bei-woocommerce-produkte/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
