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/

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

报告相同问题?

悬赏问题

  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题