When using WordPress and ClickUp, you can embed the custom forms into a dashboard widget inside of WordPress!
CODE BASE:
// Create new widget
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
// Setup widget settings
function my_custom_dashboard_widgets() {
// format
global $wp_meta_boxes;
// add widget to dashboard
wp_add_dashboard_widget('custom_help_widget', 'WIDGET HEADER GOES HERE', 'custom_dashboard_widget');
}
function custom_dashboard_widget() {
// ClickUp code pasted inside a variable
$string .= '';
// Form code printed
echo $string;
}
Carbon Digital
Website: https://carbondigital.us