Created
October 11, 2017 07:28
-
-
Save swoboda/780899af2df43ae2a2625ff954cc85c3 to your computer and use it in GitHub Desktop.
acf-category-description.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Do NOT include the opening php tag | |
add_action( 'woocommerce_archive_description', 'wpdesk_category_description', 5 ); | |
/** | |
* Add ACF Category Description to WooCommerce | |
* | |
*/ | |
function wpdesk_category_description() { | |
$queried_object = get_queried_object(); | |
$category_description = get_field( 'category_description', $queried_object ); | |
echo $category_description; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment