Client Email Settings Template
I think these are all the settings you will need. Just pm me if you need some assistance. The names should match up ??
Host name : bladei876.jnb9.host-h.net
User Name: support@coverweb.co.za
Password : (Your Password)
Incoming server: mail.coverweb.co.za
Outgoing (SMTP) server: smtp.coverweb.co.za
Server PHP Memory Limits
When setting your domain php memory limit if your service provider does not give you a drop down or options for what PHP memory limits you can set. Here they are listed below.
16mb
32mb
64mb
72mb
96mb
128mb
160mb
192mb
224mb
256mb
320mb
384mb
448mb
512mb
Create array in a foreach loop from wordpress custom post categories
<?php
$category = get_terms('gallery_albums');//custom category name
foreach ($category as $catVal) {
$AlbumName[] = $catVal->name;
}
echo "<pre>";
print_r($AlbumName);
echo "</pre>";
?>
List Categories For Custom Post
<?php
$category = get_terms('task_categories');//custom category name
foreach ($category as $catVal) {
echo '<h2>'.$catVal->name.'</h2>';
}
?>
© Garth Baker 2025 All rights reserved.