<div class="gmail_quote">On Wed, Aug 10, 2011 at 11:11 AM, Chip Bennett <span dir="ltr"><<a href="mailto:chip@chipbennett.net">chip@chipbennett.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><span style="white-space: pre-wrap;">                </span>// Apply dynamic width to $content_width</div>
<div><span style="white-space: pre-wrap;">                </span>global $content_width;</div><div><span style="white-space: pre-wrap;">                </span>if ( ! isset( $content_width ) ) {</div><div><span style="white-space: pre-wrap;">                        </span>$content_width = $dynamic_width;</div>
<div><span style="white-space: pre-wrap;">                </span>}</div><div></div></blockquote></div><br>I know I'm a little "off" today, but shouldn't you be testing if $dynamic_width is set versus the $content_width ... which you are setting with function's code above this test?<br>
<br>For example:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><span style="white-space: pre-wrap;">                </span>// Apply dynamic width to $content_width</div>
<div><span style="white-space: pre-wrap;">                </span>global $content_width;</div><div><span style="white-space: pre-wrap;">                </span>if ( isset( $dynamic_width ) ) {</div><div><span style="white-space: pre-wrap;">                        </span>$content_width = $dynamic_width;</div>
<div><span style="white-space: pre-wrap;">                </span>}</div></blockquote><br><br>Cais.<br>