Having trouble figuring cleanest option: In WordPress (ver. 2.x) I have installed the wp_admanager plugin. Coding for this in the template is: <?php wp_admanager('group_name'); ?> PHP: My desire is to replace the "group_name" with the current category as displayed by: <?php echo single_cat_title(); ?> PHP: What is the best means to replace 'group_name' with the current category of Wordpress? Thanks in advance!
Do you mean like this? <?php wp_admanager(single_cat_title()); ?> PHP: ...sorry if I misunderstood you
That receives the following error: Dealers-Retailers is one of the groups preset in the database. When I execute the following, it works fine. <?php wp_admanager('Dealers-Retailers'); ?> PHP:
Does anyone else know how to replace the 'Dealers-Retailers' with the current category name within Wordpress? P-L-E-E-Z-E!!!