multilingual custom styles
-
I try to accomplish something like this:
function splus_ddcustom_output( $styles ) { $ddtitle = __( 'Hello There!', 'splus' ); $styles['icon_link'] = array( 'name' => __( 'Icon Link', 'delightful-downloads' ), 'format' => '<div class="download_container"> <b>$ddtitle</b><br /> <a href="%url%" title="%title%" rel="nofollow">%title%</a> <a href="%url%" title="icon-file-pdf" rel="nofollow"><i class="fa fa-file fa-file-%ext%"></i></a> (%filesize%) </div>' ); return $styles; } add_filter( 'dedo_get_styles', 'splus_ddcustom_output' );
this is not working as the outputs is $ddtitle instead of the contents of the variable. Any hints on how I could accomplish this?
- The topic ‘multilingual custom styles’ is closed to new replies.