I want to write the following code in ternary operator. I tried in many way but it does not work at all.
<?php
if(isset($options['footer_txt_color'])) {
echo $options['footer_txt_color'];
} else {
echo "#ffffff";
}
?>
Use this code
echo (isset($options['footer_txt_color'])) ? $options['footer_txt_color'] : '#ffffff';