drmticpet66231422 2017-09-03 08:38
浏览 48
已采纳

为什么在同一函数内回显局部变量不起作用? [重复]

This question already has an answer here:

In the flowing Code :(see down)

I defined a local variable named post_author_nickname

Why I can't use it inside the same function as HTML echo?

I'm using the function directly instead of assigning it to variable


The Code

function head_scripts() {
    $options = get_option( 'ps_plugindev' );
    if ( isset( $options['twitter'] ) && !is_admin() ) {
            $post_id = get_queried_object_id();
            $post_author_id = get_post_field( 'post_author', $post_id );
              $post_author_nickname =  the_author_meta( 'nickname', $post_author_id );
            ?>
            <script type="text/javascript">
                function setT() {
                    var b = document.createElement('a');
                    b.classList += "twitter-share-button";
                    b.setAttribute("data-text",  "<?php echo $post_author_nickname ?>" );
                };
            </script>
        <?php
}

"< ? php echo $post_author_nickname; ? >"

Not working

"< ? php echo the_author_meta( 'nickname', $post_author_id ); ? > " 

Working

Edit 1 :

Thanks @mario for suggesting reading the question What is the difference between get_the_* and the_* template tags in wordpress? - Stack Overflow but I didn't understand what the answer? or how it is related

Edit 2 :

I checked

NOTE: I'm not familiar with php (10%) and only use it for wordpress my background is in c#

EDIT 3 :

After reading @mario suggested anser multible times I got it.

When Gaurav sugesited in his anser changing

$post_author_nickname =  the_author_meta( 'nickname', $post_author_id );

To

$post_author_nickname =  get_the_author_meta( 'nickname', $post_author_id );

I didn't note the deferent between the and get prefix to the function name'

Now I understand

Usually, I deleted the question if it is marked as duplicate.

I will leave this note if some one like me didn't get it.

thanks Gaurav and @mario

</div>
  • 写回答

1条回答 默认 最新

  • dsfds656545 2017-09-03 08:44
    关注

    Use this function instead of the_author_meta.

    get_the_author_meta()
    

    https://developer.wordpress.org/reference/functions/get_the_author_meta/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 cve,cnnvd漏洞扫描工具推荐
  • ¥15 图像超分real-esrgan网络自己训练模型遇到问题
  • ¥15 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)
  • ¥50 python写segy数据出错
  • ¥20 关于线性结构的问题:希望能从头到尾完整地帮我改一下,困扰我很久了
  • ¥30 3D多模态医疗数据集-视觉问答
  • ¥20 设计一个二极管稳压值检测电路